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.
mask-detector/manifest.json

35 lines
625 B
JSON
Raw Normal View History

2017-09-20 15:33:18 +02:00
{
"manifest_version": 2,
"name": "Mask Detector",
"short_name": "mask-detector",
"version": "0.0.1",
"author": "Lukas Winkler",
2017-09-20 16:21:17 +02:00
"description": "find websites using the mask Typo3 extension",
2017-09-20 15:33:18 +02:00
"icons": {
"128": "logo.128.png"
},
"browser_action": {
"default_icon": {
"128": "logo.128.png"
},
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["contentscript.js"]
}
],
"permissions": [
"storage",
"http://*/",
"https://*/",
"tabs"
],
"background": {
"scripts": [
"background.js"
]
}
}