Fix Twitter

Fix Twitter

Fix dumb things about Twitter & TweetDeck on the web. - Show “replying to” in replies and threads. - Enable old school @-mention replies. - Replace https://t.co links with original links (whenr possible). - Hide “in case you missed” notification.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Fix Twitter",
  "version": "1.2",
  "manifest_version": 2,
  "author": "Jonathan Suh <[email protected]>",
  "description": "Fix dumb things about Twitter and TweetDeck on the web (e.g. hidden “replying to”, t.co links)",
  "homepage_url": "https://github.com/jonsuh/fix-twitter/",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*",
        "https://tweetdeck.twitter.com/*"
      ],
      "js": [
        "content_scripts.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "https://twitter.com/*"
  ],
  "options_ui": {
    "page": "options.html"
  },
  "applications": {
    "gecko": {
      "id": "{76753f1c-578f-42de-bb86-a68056cda972}",
      "strict_min_version": "45.0"
    }
  }
}