Twitter usability suite

Twitter usability suite

Features include making with_replies default for user account links, and latest (rather than top) tweets default for searches and hashtags. Attempts to re-implement nagivational clicks as links rather than onclick events when possible.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Twitter usability suite",
  "version": "2.3.10",
  "description": "Tools for making Twitter usable",
  "homepage_url": "https://astoundingteam.com/",
  "permissions": [
    "contextMenus",
    "activeTab",
    "storage",
    "unlimitedStorage",
    "*://*.twitter.com/*",
    "webRequest",
    "*://*.twitter.com/i/videos/tweet/*"
  ],
  "icons": {
    "128": "tw128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.twitter.com/*"
      ],
      "js": [
        "jquery.js",
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "page_action": {
    "show_matches": [
      "*://*.twitter.com/*"
    ],
    "default_icon": {
      "19": "tw19.png",
      "38": "tw38.png"
    },
    "default_title": "Click me if twitter usability didn't load with page"
  },
  "browser_action": {
    "default_icon": {
      "19": "view-19.png",
      "38": "view-38.png"
    },
    "default_title": "Browse deleted tweets"
  },
  "options_ui": {
    "page": "settings/options.html"
  },
  "manifest_version": 2,
  "browser_specific_settings": {
    "gecko": {
      "id": "{53686472-d4ba-44ff-9177-461e56c9533a}"
    }
  }
}