Tab Shuffler

Tab Shuffler

Randomize the tab order in your browser window.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tab Shuffler",
  "description": "Randomize the tab order in your browser window.",
  "version": "0.1.1",
  "manifest_version": 3,
  "action": {
    "default_title": "Randomize the order of the tabs in this window. Right-click to undo.",
    "default_icon": {
      "16": "/images/icon16-o.png",
      "32": "/images/icon32-o.png",
      "48": "/images/icon48-o.png",
      "128": "/images/icon128-o.png"
    }
  },
  "icons": {
    "16": "/images/icon16-o.png",
    "32": "/images/icon32-o.png",
    "48": "/images/icon48-o.png",
    "128": "/images/icon128-o.png"
  },
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  }
}