This commit is contained in:
cupcakearmy
2020-09-17 14:27:08 +02:00
parent ba497e2b7a
commit 2d0de4373c
7 changed files with 7803 additions and 0 deletions

21
manifest.json Normal file
View File

@@ -0,0 +1,21 @@
{
"manifest_version": 2,
"name": "Borderify",
"version": "1.0",
"description": "Adds a red border to all webpages matching mozilla.org.",
"icons": {
"512": "icons/timer.png"
},
"permissions": ["<all_urls>", "tabs", "unlimitedStorage", "storage"],
"background": {
"scripts": ["./src/background/index.js"]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["borderify.js"]
}
]
}