Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

have both x.com & twitter.com domains under the list #16

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions background.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ const TWITTER_DOMAINS = [
"ton.twimg.com",
"pbs.twimg.com",
"tweetdeck.x.com",
"twitter.com",
"www.twitter.com",
"mobile.twitter.com",
"m.twitter.com",
"api.twitter.com",
"tweetdeck.twitter.com"
];

const MAC_ADDON_ID = "@testpilot-containers";
Expand Down
62 changes: 29 additions & 33 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,31 @@
{
"manifest_version": 2,
"name": "Twitter Container",
"version": "1.3.2",

"description": "This addon is an unofficial fork of Mozilla's Facebook Container designed for Twitter. \n Twitter Container isolates your Twitter activity from the rest of your web activity in order to prevent Twitter from tracking you outside of the Twitter website via third party cookies. \n This is not an official Mozilla Product & is in no way related to them.",

"icons": {
"48": "icon.png",
"96": "[email protected]"
},

"browser_specific_settings": {
"gecko": {
"id": "@contain-twitter",
"strict_min_version": "57.0"
}
},

"homepage_url": "https://github.com/v1shwa/contain-twitter",

"permissions": [
"<all_urls>",
"contextualIdentities",
"cookies",
"management",
"tabs",
"webRequestBlocking",
"webRequest"
],

"background": {
"scripts": ["background.js"]
"manifest_version": 2,
"name": "Twitter Container",
"version": "1.3.3",
"description": "This addon is an unofficial fork of Mozilla's Facebook Container designed for Twitter. \n Twitter Container isolates your Twitter activity from the rest of your web activity in order to prevent Twitter from tracking you outside of the Twitter website via third party cookies. \n This is not an official Mozilla Product & is in no way related to them.",
"icons": {
"48": "icon.png",
"96": "[email protected]"
},
"browser_specific_settings": {
"gecko": {
"id": "@contain-twitter",
"strict_min_version": "57.0"
}
}
},
"homepage_url": "https://github.com/v1shwa/contain-twitter",
"permissions": [
"<all_urls>",
"contextualIdentities",
"cookies",
"management",
"tabs",
"webRequestBlocking",
"webRequest"
],
"background": {
"scripts": [
"background.js"
]
}
}