manifest.json (647B)
1 { 2 "manifest_version": 2, 3 "name": "Add-ons Search Detection", 4 "hidden": true, 5 "browser_specific_settings": { 6 "gecko": { 7 "id": "addons-search-detection@mozilla.com" 8 } 9 }, 10 "version": "3.0.0", 11 "description": "", 12 "experiment_apis": { 13 "addonsSearchDetection": { 14 "schema": "schema.json", 15 "parent": { 16 "scopes": ["addon_parent"], 17 "script": "api.js", 18 "events": [], 19 "paths": [["addonsSearchDetection"]] 20 } 21 } 22 }, 23 "permissions": [ 24 "<all_urls>", 25 "telemetry", 26 "webRequest", 27 "webRequestBlocking" 28 ], 29 "background": { 30 "scripts": ["background.js"] 31 } 32 }