mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-17 14:59:12 +02:00
* Simple Legacy Overlay Addon with an Embedded WebExtension. * fix: fixed eslint errors on embedded-webextension-overlay example
23 lines
689 B
XML
23 lines
689 B
XML
<?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> |