Slow Twitter

Slow Twitter

Show one tweet at a time in a sea of white space

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Slow Twitter",
  "version": "0.0.2",
  "description": "Show one tweet at a time in a sea of white space",
  "permissions": [
    "tabs",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "icons": {
    "16": "images/noun_turtle_transparent_cropped_16.png",
    "32": "images/noun_turtle_transparent_cropped_32.png",
    "48": "images/noun_turtle_transparent_cropped_48.png",
    "128": "images/noun_turtle_transparent_cropped_128.png"
  },
  "browser_action": {
    "default_icon": "images/noun_turtle_transparent_cropped_32.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.twitter.com/*"
      ],
      "js": [
        "main.js"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 2
}