From a2f267b080ef775ea62a5f32a547612aa482f009 Mon Sep 17 00:00:00 2001 From: TheArchons Date: Mon, 26 Jan 2026 15:09:56 -0500 Subject: Add initial implementation of Unhook NG extension with manifest, popup, and content scripts --- manifest.json | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 manifest.json (limited to 'manifest.json') 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 -- cgit v1.3.1