mirror of
https://github.com/anatolykopyl/vk-mute.git
synced 2026-03-26 21:05:16 +00:00
25 lines
451 B
JSON
25 lines
451 B
JSON
{
|
|
"name": "Hide Cringe",
|
|
"version": "1.0",
|
|
"description": "Hides cringe",
|
|
"permissions": ["activeTab", "declarativeContent", "storage"],
|
|
"background": {
|
|
"scripts": [
|
|
"background.js"
|
|
],
|
|
"persistent": false
|
|
},
|
|
"page_action": {
|
|
"default_popup": "popup.html"
|
|
},
|
|
"manifest_version": 2,
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"https://*.vk.com/*"
|
|
],
|
|
"js": ["hide_element.js"]
|
|
}
|
|
]
|
|
}
|