first commit
This commit is contained in:
43
hw_datacollector/manifest.json
Normal file
43
hw_datacollector/manifest.json
Normal file
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"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:;"
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user