Initial commit

This commit is contained in:
2020-04-11 23:09:11 +03:00
commit 11596c3d6d
5 changed files with 223 additions and 0 deletions

24
manifest.json Normal file
View File

@@ -0,0 +1,24 @@
{
"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"]
}
]
}