commit d56ee5aae0b7daf2583b818d1a54cbf995c14743 Author: jason Date: Sun Mar 1 16:16:55 2026 +0800 Initial commit: manifest.json diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..3ebf58c --- /dev/null +++ b/manifest.json @@ -0,0 +1,29 @@ +{ + "manifest_version": 3, + "name": "QuickPurge & Redirect", + "version": "1.0", + "description": "一键清理特定域名的浏览器残留数据,并自动重定向至预设地址。", + "permissions": [ + "browsingData", + "storage", + "tabs", + "activeTab", + "scripting" + ], + "host_permissions": [ + "http://*/*", + "https://*/*" + ], + "action": { + "default_popup": "popup.html", + "default_title": "QuickPurge" + }, + "icons": { + "16": "icon16.png", + "48": "icon48.png", + "128": "icon128.png" + }, + "background": { + "service_worker": "background.js" + } +}