NextTab

NextTab

A tool that automatically switches to the next tab in a list

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.0.3",
  "manifest_version": 2,
  "name": "NextTab",
  "short_name": "NextTab",
  "description": "A tool that automatically switches to the next tab in a list",
  "background": {
    "scripts": [
      "lib/js/browser-polyfill.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "img/icon16.png",
      "48": "img/icon48.png",
      "128": "img/icon128.png"
    },
    "default_title": "NextTab",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "downloads",
    "storage"
  ],
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "options_ui": {
    "page": "./options.html",
    "open_in_tab": true
  }
}