Moly Tab Menu

Moly Tab Menu

Switch tabs more efficiently.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Moly Tab Menu",
  "version": "1.1.4",
  "description": "Switch tabs more efficiently.",
  "icons": {
    "16": "16.png",
    "128": "128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content-light.css",
        "content-dark.css"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "permissions": [
    "tabs",
    "storage",
    "sessions",
    "history",
    "favicon"
  ]
}