Rotate Custom New Tab Extensions

Rotate Custom New Tab Extensions

This extension allows you to rotate among a set of custom new tab chrome extensions configured through the options page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "icons": {
    "128": "icon.png"
  },
  "name": "Rotate Custom New Tab Extensions",
  "description": "This extension allows you to rotate among a set of custom new tab chrome extensions configured through the options page.",
  "version": "1.2",
  "permissions": [
    "management",
    "tabs",
    "alarms",
    "storage"
  ],
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}