Next Tab

Next Tab

Press a button to go to the next tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Next Tab",
  "version": "1.7",
  "author": "https://sicutunum.com",
  "homepage_url": "https://sicutunum.com/productivity/extensions/next-tab",
  "description": "Press a button to go to the next tab.",
  "offline_enabled": true,
  "permissions": [
    "tabs",
    "storage",
    "activeTab",
    "scripting"
  ],
  "action": {
    "default_title": "Next Tab (right click for options)",
    "default_icon": "images/icon.png"
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  }
}