Example: embedded webextension overlay (#249)

* Simple Legacy Overlay Addon with an Embedded WebExtension.

* fix: fixed eslint errors on embedded-webextension-overlay example
This commit is contained in:
Luca Greco
2017-07-20 00:10:26 +02:00
committed by wbamberg
parent 7b6b03a72c
commit a7ec907b88
6 changed files with 73 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
<?xml version="1.0"?>
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:em="http://www.mozilla.org/2004/em-rdf#">
<Description about="urn:mozilla:install-manifest">
<em:id>my-overlay-addon@me</em:id>
<em:version>1.0.1</em:version>
<em:name>My Legacy Overlay Addon</em:name>
<em:type>2</em:type>
<em:multiprocessCompatible>true</em:multiprocessCompatible>
<em:targetApplication>
<Description>
<!-- firefox -->
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
<em:minVersion>51.0</em:minVersion>
<em:maxVersion>*</em:maxVersion>
</Description>
</em:targetApplication>
</Description>
</RDF>