Readable Twitter

Readable Twitter

Make twitter timelines more readable by adding a button to hide retweets, muting bright colors, and moving the content to the left.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Readable Twitter",
  "description": "Make twitter timelines more readable by adding a button to hide retweets, muting bright colors, and moving the content to the left.",
  "version": "1.5",
  "content_scripts": [
    {
      "matches": [
        "http://twitter.com/*",
        "https://twitter.com/*"
      ],
      "css": [
        "readable_twitter.css"
      ],
      "js": [
        "jquery-2.1.1.min.js",
        "readable_twitter.js"
      ]
    }
  ],
  "icons": {
    "128": "read.png"
  }
}