manifest.json (933B)
1 { 2 "manifest_version": 2, 3 "name": "Test support", 4 "version": "1.0", 5 "description": "Helper script for GeckoView tests", 6 "browser_specific_settings": { 7 "gecko": { 8 "id": "test-support@tests.mozilla.org" 9 } 10 }, 11 "content_scripts": [ 12 { 13 "matches": ["<all_urls>"], 14 "match_about_blank": true, 15 "js": ["test-support.js"], 16 "run_at": "document_start" 17 } 18 ], 19 "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';", 20 "background": { 21 "scripts": ["background.js"] 22 }, 23 "experiment_apis": { 24 "test": { 25 "schema": "test-schema.json", 26 "parent": { 27 "scopes": ["addon_parent"], 28 "script": "test-api.js", 29 "events": ["startup"], 30 "paths": [["test"]] 31 } 32 } 33 }, 34 "options_ui": { 35 "page": "dummy.html" 36 }, 37 "permissions": [ 38 "geckoViewAddons", 39 "nativeMessaging", 40 "nativeMessagingFromContent" 41 ] 42 }