Twitter Auto Refresh

Twitter Auto Refresh

Auto refresh timeline on twitter.com when you scroll to the top. The refresh interval is 3 seconds by default. ※Warning Be…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Twitter Auto Refresh",
  "descriptions": "Auto reload timeline on twitter.com",
  "permissions": [
    "storage"
  ],
  "manifest_version": 2,
  "version": "1.1.0",
  "browser_action": {
    "default_icon": "icon128.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/home"
      ],
      "js": [
        "content_scripts.js"
      ]
    }
  ]
}