{ "manifest_version": 2, "name": "Test support", "version": "1.0", "description": "Helper script for GeckoView tests", "browser_specific_settings": { "gecko": { "id": "test-support@tests.mozilla.org" } }, "content_scripts": [ { "matches": [""], "match_about_blank": true, "js": ["test-support.js"], "run_at": "document_start" } ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';", "background": { "scripts": ["background.js"] }, "experiment_apis": { "test": { "schema": "test-schema.json", "parent": { "scopes": ["addon_parent"], "script": "test-api.js", "events": ["startup"], "paths": [["test"]] } } }, "options_ui": { "page": "dummy.html" }, "permissions": [ "geckoViewAddons", "nativeMessaging", "nativeMessagingFromContent" ] }