microwave/firefox/manifest.json

81 lines
1.8 KiB
JSON
Raw Permalink Normal View History

2022-11-18 06:27:17 +07:00
{
"version": "1.0",
"manifest_version": 2,
"name": "микроволновка",
"description": "Массовая раскрутка и прогрев аккаунтов ВКонтакте",
"applications": {
"gecko": {
"id": "microwave@mirzaev.sexy",
"strict_min_version": "95.0.2"
}
},
"default_locale": "en",
"permissions": [
"*://*.vk.com/*",
"<all_urls>",
"activeTab",
"alarms",
"background",
"browserSettings",
"browsingData",
"clipboardRead",
"clipboardWrite",
"contentSettings",
"contextMenus",
"contextualIdentities",
"cookies",
"debugger",
"dns",
"downloads",
"downloads.open",
"find",
"geolocation",
"history",
"identity",
"idle",
"management",
"menus",
"menus.overrideContext",
"nativeMessaging",
"notifications",
"pageCapture",
"pkcs11",
"privacy",
"proxy",
"search",
"sessions",
"storage",
"tabHide",
"tabs",
"topSites",
"unlimitedStorage",
"webNavigation",
"webRequest",
"webRequestBlocking"
],
"options_ui": {
"page": "/settings/index.html"
},
"background": {
"scripts": [
"/core.js"
]
},
"content_scripts": [
{
"matches": [
"https://*.vk.com/*"
],
"js": [
"/log.js",
"/settings.js",
"/modules/module.js",
"/pages/panel/index.js"
],
"all_frames": true,
"match_about_blank": true,
"run_at": "document_end"
}
]
}