Skip to content

Commit

Permalink
Support x.com domain (#68)
Browse files Browse the repository at this point in the history
* support new x.com domain

* update to v0.3.3
  • Loading branch information
Raiquen Guidotti authored May 17, 2024
1 parent 86e22ae commit f6fee9f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand All @@ -16,7 +16,7 @@
{
"js": ["src/content_scripts/content.js"],
"matches": [
"https://*.twitter.com/*"
"https://*.twitter.com/*", "https://*.x.com/*"
],
"run_at": "document_end"
}
Expand All @@ -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/*"]
}

0 comments on commit f6fee9f

Please sign in to comment.