mirror of
https://github.com/anatolykopyl/vk-mute.git
synced 2026-03-26 21:05:16 +00:00
34 lines
844 B
JSON
34 lines
844 B
JSON
{
|
|
"name": "VK Mute",
|
|
"author": "Anatoly Kopyl, Matvey Tarasov",
|
|
"icons": {
|
|
"140": "assets/icons/icon140.png",
|
|
"128": "assets/icons/icon128.png",
|
|
"48": "assets/icons/icon48.png"
|
|
},
|
|
"version": "1.2",
|
|
"description": "Позволяет заглушить нежелаемых собеседников",
|
|
"permissions": [
|
|
"activeTab",
|
|
"declarativeContent",
|
|
"storage"
|
|
],
|
|
"background": {
|
|
"scripts": ["dist/background.js"],
|
|
"persistent": false
|
|
},
|
|
"page_action": {
|
|
"default_popup": "dist/popup.html"
|
|
},
|
|
"manifest_version": 2,
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["https://*.vk.com/*"],
|
|
"js": ["./dist/dom.js"]
|
|
}
|
|
],
|
|
"web_accessible_resources": [
|
|
"assets/mute.png"
|
|
]
|
|
}
|