Cycle Tab

Cycle Tab

Cycle through all your favourite Chrome tab extensions when you open a new tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Cycle Tab",
  "description": "Cycle through all your favourite Chrome tab extensions when you open a new tab.",
  "version": "1.2.1",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon128.png",
    "128": "images/icon128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "permissions": [
    "http://api.cycletab.rocks/*",
    "storage",
    "management"
  ]
}