Refactoring and add build-tools

This commit is contained in:
Matvey Tarasov
2020-04-18 17:27:15 +03:00
parent 708cb72028
commit b0b79e46a6
26 changed files with 7896 additions and 172 deletions

29
extension/manifest.json Normal file
View 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"]
}
]
}