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

46 lines
851 B
JSON
Raw Normal View History

2017-09-20 15:33:18 +02:00
{
"manifest_version": 2,
"name": "Mask Detector",
"short_name": "mask-detector",
2018-09-11 13:10:04 +02:00
"version": "1.2.1",
2017-09-20 15:33:18 +02:00
"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": {
2017-09-22 11:08:12 +02:00
"128": "img/icon.128.png"
2017-09-20 15:33:18 +02:00
},
2017-09-21 08:31:51 +02:00
"page_action": {
2017-09-20 15:33:18 +02:00
"default_icon": {
2017-09-22 11:08:12 +02:00
"128": "img/icon-disabled.128.png"
2017-09-20 15:33:18 +02:00
},
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["contentscript.js"]
}
],
"permissions": [
"storage",
"http://*/",
"https://*/",
"tabs"
],
"background": {
"scripts": [
"background.js"
]
2017-09-22 11:19:34 +02:00
},
"applications": {
"gecko": {
2018-08-24 17:46:13 +02:00
"id": "{2b6c2a2b-8cdf-4847-b184-b25d58656722}",
"strict_min_version": "42.0"
}
},
2017-09-22 11:19:34 +02:00
"options_ui": {
"page": "options.html",
"chrome_style": true
2017-09-20 15:33:18 +02:00
}
2018-08-24 17:46:13 +02:00
}