From f6fee9f3bc139296974d301d6cc6fbe3515c3ec5 Mon Sep 17 00:00:00 2001 From: Raiquen Guidotti Date: Fri, 17 May 2024 14:10:05 +0200 Subject: [PATCH] Support x.com domain (#68) * support new x.com domain * update to v0.3.3 --- manifest.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifest.json b/manifest.json index 5211ff8..51149fa 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "Cleaner Twitter", "description": "Make Twitter UI cleaner by removing annoying pieces.", - "version": "0.3.2", + "version": "0.3.3", "action": { "default_popup": "popup/popup.html", "default_icon": { @@ -16,7 +16,7 @@ { "js": ["src/content_scripts/content.js"], "matches": [ - "https://*.twitter.com/*" + "https://*.twitter.com/*", "https://*.x.com/*" ], "run_at": "document_end" } @@ -31,5 +31,5 @@ "service_worker": "service_workers/background.js", "type": "module" }, "options_page": "src/options/options.html", - "host_permissions": ["https://*.twitter.com/*"] + "host_permissions": ["https://*.twitter.com/*", "https://*.x.com/*"] }