Inspect and view changes in Auto FxTwitter source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "Auto FxTwitter",
"version": "1.2.1",
"description": "Automatically convert twitter.com or x.com links to fxtwitter.com (or domain of your choice) when sharing a post.",
"icons": {
"48": "assets/icon-48.png",
"128": "assets/icon-128.png"
},
"permissions": [
"clipboardWrite",
"storage"
],
"content_scripts": [
{
"matches": [
"*://twitter.com/*",
"*://x.com/*"
],
"js": [
"auto-fxtwitter.js"
]
}
],
"action": {
"default_popup": "popup/index.html"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}