Files
chrome-extension/hw_datacollector/manifest.json
2020-06-25 15:12:51 +02:00

43 lines
964 B
JSON

{
"manifest_version": 2,
"name": "HW Sniffer",
"description": "Make HW Tools better, and share your data with us.",
"version": "1.0.0",
"default_locale": "en",
"icons": {
"128": "hero_on.png"
},
"permissions": [
"webRequest",
"webRequestBlocking",
"https://i-heroes-fb.nextersglobal.com/*"
],
"browser_action": {
"default_icon": "hero_on.png",
"default_title": "HW Sniffer"
},
"background": {
"scripts": ["bg.js"],
"persistent": true
},
"content_scripts": [{
"matches": [
"https://i-heroes-fb.nextersglobal.com/*"
],
"js": [ "injector.js" ],
"run_at": "document_start",
"all_frames": true,
"persistent": true
}],
"web_accessible_resources": [
"injected.js"
],
"content_security_policy": "default-src 'self'; script-src 'self'; style-src * 'unsafe-inline'; img-src 'self' data:;"
}