TidyTabs

TidyTabs

TidyTabs chrome extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "TidyTabs",
  "description": "TidyTabs chrome extension",
  "version": "0.0.4",
  "icons": {
    "16": "/assets/icon16.png",
    "48": "/assets/icon48.png",
    "128": "/assets/icon128.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "notifications"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/icon128.png",
        "assets/google-chrome.png"
      ],
      "matches": [
        "https://*/*"
      ]
    },
    {
      "resources": [
        "tidyTabs.html"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "content_scripts": [],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_title": "Tab optimizer",
    "default_popup": "popup.html"
  },
  "commands": {
    "start": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "Run \"start\" on the current page."
    }
  }
}