aboutsummaryrefslogtreecommitdiff
path: root/manifest.json
diff options
context:
space:
mode:
authorTheArchons <github@thearchons.xyz>2026-01-26 15:09:56 -0500
committerTheArchons <github@thearchons.xyz>2026-01-26 15:09:56 -0500
commita2f267b080ef775ea62a5f32a547612aa482f009 (patch)
tree720214dd731347e6aed236c79daa48732f40f5f2 /manifest.json
parent53dae4c861f2343be00f7154d06f24555d200d1a (diff)
Add initial implementation of Unhook NG extension with manifest, popup, and content scripts
Diffstat (limited to 'manifest.json')
-rw-r--r--manifest.json36
1 files changed, 36 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json
new file mode 100644
index 0000000..4554270
--- /dev/null
+++ b/manifest.json
@@ -0,0 +1,36 @@
+{
+ "manifest_version": 2,
+ "name": "Unhook NG",
+ "version": "1",
+
+ "description": "New version of Unhook. Block Youtube Distractions.",
+
+ "icons": {
+ "48": "icons/unhook.jpg"
+ },
+
+ "permissions": [
+ "storage"
+ ],
+
+ "browser_action": {
+ "default_icon": "icons/unhook.jpg",
+ "default_title": "Unhook NG",
+ "default_popup": "popup.html"
+ },
+
+ "content_scripts": [
+ {
+ "matches": ["*://*.youtube.com/*"],
+ "js": ["unhook.js"]
+ }
+ ],
+ "browser_specific_settings": {
+ "gecko": {
+ "id": "@unhookng",
+ "data_collection_permissions": {
+ "required": ["none"]
+ }
+ }
+ }
+} \ No newline at end of file