From d0e4dcc6ef057f4c680838d4f8ac8e099a166225 Mon Sep 17 00:00:00 2001 From: FrostyBiscuit Date: Sun, 16 Feb 2025 13:04:17 +0100 Subject: Initial push with version 0.1.1 --- manifest.json | 112 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 manifest.json (limited to 'manifest.json') diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..bfe0549 --- /dev/null +++ b/manifest.json @@ -0,0 +1,112 @@ +{ + "manifest_version": 2, + "name": "Transparent Zen", + "version": "0.1.1", + "description": "Inject custom styles to make your favorite websites transparent", + "browser_specific_settings": { + "gecko": { + "id": "{74186d10-f6f2-4f73-b33a-83bb72e50654}" + } + }, + "icons": { + "48": "assets/images/logo_48.png", + "96": "assets/images/logo_96.png" + }, + "permissions": [ + "activeTab", + "storage", + "tabs", + "" + ], + "browser_action": { + "default_popup": "popup/popup.html", + "default_title": "Transparent Zen" + }, + "content_scripts": [ + { + "matches": [""], + "css": ["transparent-zen.css"], + "run_at": "document_start" + }, + { + "matches": ["*://*.steampowered.com/*", "*://*.steamcommunity.com/*"], + "css": ["./styles/websites/steam.css"], + "run_at": "document_start" + }, + { + "matches": ["*://*.bing.com/*"], + "css": ["./styles/websites/bing.css"], + "run_at": "document_start" + }, + { + "matches": ["*://*.amazon.com/*", "*://*.amazon.de/*"], + "css": ["./styles/websites/amazon.css"], + "run_at": "document_start" + }, + { + "matches": ["*://*.ddl-warez.cc/*"], + "css": ["./styles/websites/ddl-warez.css"], + "run_at": "document_start" + }, + { + "matches": ["*://*.epicgames.com/*"], + "css": ["./styles/websites/epicgames.css"], + "run_at": "document_start" + }, + { + "matches": ["*://*.gog.com/*"], + "css": ["./styles/websites/gog.css"], + "run_at": "document_start" + }, + { + "matches": ["*://*.kinguin.net/*"], + "css": ["./styles/websites/kinguin.css"], + "run_at": "document_start" + }, + { + "matches": ["*://*.kryptex.com/*"], + "css": ["./styles/websites/kryptex.css"], + "run_at": "document_start" + }, + { + "matches": ["*://*.lieferando.at/*"], + "css": ["./styles/websites/lieferando.css"], + "run_at": "document_start" + }, + { + "matches": ["*://*.proton.me/*"], + "css": ["./styles/websites/proton.css"], + "run_at": "document_start" + }, + { + "matches": ["*://mail.proton.me/*"], + "css": ["./styles/websites/mail.proton.css"], + "run_at": "document_start" + }, + { + "matches": ["*://*.wuwatracker.com/*"], + "css": ["./styles/websites/wuwatracker.css"], + "run_at": "document_start" + }, + { + "matches": ["*://*.youtube.com/*"], + "css": ["./styles/websites/youtube.css"], + "run_at": "document_start" + }, + { + "matches": ["*://*.github.com/*"], + "css": ["./styles/websites/github.css"], + "run_at": "document_start" + }, + { + "matches": ["*://*.reddit.com/*"], + "css": ["./styles/websites/reddit.css"], + "run_at": "document_start" + }, + { + "matches": ["*://*.nexusmods.com/*"], + "css": ["./styles/websites/nexusmods.css"], + "run_at": "document_start" + } + ] +} \ No newline at end of file -- cgit v1.2.3