mirror of
https://github.com/anatolykopyl/vk-mute.git
synced 2026-03-26 12:55:13 +00:00
Refactoring and add build-tools
This commit is contained in:
29
extension/manifest.json
Normal file
29
extension/manifest.json
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "VK Mute",
|
||||
"icons": {
|
||||
"140": "assets/icons/icon140.png",
|
||||
"128": "assets/icons/icon128.png",
|
||||
"48": "assets/icons/icon48.png"
|
||||
},
|
||||
"version": "1.0",
|
||||
"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"]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user