Twitter Idle AutoRefresh

Twitter Idle AutoRefresh

An add-on that automatically reveals unread tweets every set seconds on Twitter feeds, so long as the customisable conditions are met.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Twitter Idle AutoRefresh",
  "version": "1.3.0",
  "description": "Automatically loads new tweets as they appear on the Twitter home feed, so long as the page isn't focused.",
  "homepage_url": "https://github.com/anomalyce/twitter-idle-autorefresh",
  "developer": {
    "name": "Anomalyce",
    "url": "https://github.com/anomalyce"
  },
  "icons": {
    "48": "icons/twitter-idle-autorefresh-48.png",
    "96": "icons/twitter-idle-autorefresh-96.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://twitter.com/*"
      ],
      "js": [
        "scripts/content.js"
      ]
    }
  ],
  "options_ui": {
    "page": "settings/options.html",
    "browser_style": true
  },
  "permissions": [
    "storage"
  ],
  "applications": {
    "gecko": {
      "id": "{6d0bb691-5619-4d53-8144-2a7b7741fa5e}"
    }
  }
}