Tab Roulette

Tab Roulette

Tab slideshow plugin - Awesome for in-office dashboards!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tab Roulette",
  "version": "0.5",
  "description": "Tab slideshow plugin - Awesome for in-office dashboards!",
  "options_page": "src/view/mission-control.html",
  "browser_action": {
    "default_icon": "src/images/icon_19x19_grey.png",
    "default_title": "Tab roulette"
  },
  "background": {
    "scripts": [
      "src/jslib/underscore-1.4.3.js",
      "src/js/lib.js",
      "src/js/background.js"
    ]
  },
  "permissions": [
    "tabs",
    "storage",
    "background",
    "<all_urls>"
  ],
  "icons": {
    "16": "src/images/icon_16x16.png",
    "48": "src/images/icon_48x48.png",
    "128": "src/images/icon_128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "src/css/content-script.css"
      ],
      "js": [
        "src/jslib/jquery-1.8.3.js",
        "src/js/content-script.js"
      ]
    }
  ]
}