Deuce AutoRefresh

Deuce AutoRefresh

Reload the Deuce automatically

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Deuce AutoRefresh",
  "version": "1.32",
  "manifest_version": 2,
  "description": "Reload the Deuce automatically",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "options_page": "options.html",
  "background": {
    "scripts": [
      "bg.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_icon": "icon16.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://www.icb2.com/boards/index.php?action=unreadreplies",
        "http://www.icb2.com/boards/index.php?board=1.0",
        "http://www.icb2.com/boards/index.php?action=unread"
      ],
      "js": [
        "script.js"
      ]
    }
  ]
}