summaryrefslogtreecommitdiffstats
path: root/tools/quitter/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tools/quitter/manifest.json34
1 files changed, 34 insertions, 0 deletions
diff --git a/tools/quitter/manifest.json b/tools/quitter/manifest.json
new file mode 100644
index 0000000000..de7f5a6732
--- /dev/null
+++ b/tools/quitter/manifest.json
@@ -0,0 +1,34 @@
+{
+ "manifest_version": 2,
+
+ "applications": {
+ "gecko": {"id": "quitter@mozilla.org"}
+ },
+
+ "name": "Quitter",
+ "description": "Quit",
+ "version": "2019.12.03",
+ "author": "Mozilla",
+
+ "background": {
+ "scripts": ["background.js"]
+ },
+
+ "content_scripts": [{
+ "js": ["contentscript.js"],
+ "run_at": "document_start",
+ "match_about_blank": true,
+ "matches": ["<all_urls>"]
+ }],
+
+ "experiment_apis": {
+ "quitter": {
+ "schema": "schema.json",
+ "parent": {
+ "scopes": ["addon_parent"],
+ "script": "parent.js",
+ "paths": [["quitter", "quit"]]
+ }
+ }
+ }
+}