UNPKG

wext-manifest-transformer

Version:

Transformer that lets you specify `manifest.json` properties to appear only in specific browsers.

42 lines (41 loc) 1.07 kB
{ "manifest_version": 2, "name": "web.site", "version": "0.0.0", "icons": { "16": "assets/icons/favicon-16.png", "32": "assets/icons/favicon-32.png", "48": "assets/icons/favicon-48.png", "128": "assets/icons/favicon-128.png" }, "description": "web.site", "homepage_url": "https://web.site", "short_name": "web.site", "host_permissions": [ "*://*.web.site/*" ], "content_security_policy": "script-src 'self' http://localhost:8097; object-src 'self'", "author": "abhijithvijayan", "applications": { "gecko": { "id": "{754FB1AD-CC3B-4856-B6A0-7786F8CA9D17}", "strict_min_version": "52.0" } }, "background": { "scripts": [ "js/background.bundle.js" ] }, "content_scripts": [ { "matches": [ "http://web.site/*", "https://web.site/*" ], "js": [ "js/contentScript.bundle.js" ] } ] }