Inspect and view changes in No TweetDeck Preview Button 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": 2,
"name": "Remove TweetDeck Preview Button",
"version": "1.0",
"description": "Remove the 'Try new TweetDeck Preview' button on the classic TweetDeck page",
"homepage_url": "https://github.com/WilliamArtean/RemoveTweetDeckPreviewButton",
"icons": {
"48": "icons/no-preview.png"
},
"content_scripts": [
{
"matches": [
"*://tweetdeck.twitter.com/*"
],
"js": [
"removePreviewButton.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{a4e79eb5-4ff0-46bd-ba02-541daa04a9e9}"
}
}
}