1
0
Fork 0
This repository has been archived on 2024-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
piwik-checker/manifest.json

37 lines
634 B
JSON
Raw Normal View History

2017-07-06 14:35:58 +02:00
{
"manifest_version": 2,
"name": "Piwik Checker",
"description": "Description",
"version": "0.1",
"devtools_page": "devtools.html",
"permissions": [
"webRequest",
"webRequestBlocking",
"tabs",
"http://*/*",
"https://*/*"
],
"background": {
"scripts": [
"background.js"
]
2017-07-07 22:54:29 +02:00
},
"browser_action": {
"default_title": "Google Mail",
// optional; shown in tooltip
"default_popup": "popup.html"
// optional
},
"content_scripts": [
{
"js": [
"inject.js"
],
"matches": [
"*://*/*"
],
"run_at": "document_end"
}
]
2017-07-06 14:35:58 +02:00
}