Tabworkx - Save & Switch b/n Windows of Tabs

Tabworkx - Save & Switch b/n Windows of Tabs

This extension allows you to switch between browser windows

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Tabworkx - Save & Switch b/n Windows of Tabs",
  "description": "This extension allows you to switch between browser windows",
  "version": "1.0.6",
  "icons": {
    "16": "icons/favicon-16x16.png",
    "32": "icons/favicon-32X32.png",
    "96": "icons/favicon-96X96.png",
    "128": "icons/favicon-128x128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "contextMenus"
  ],
  "action": {
    "default_popup": "www/index.html#/popup",
    "default_title": "Tabworkx - Save & Switch b/n Windows of Tabs"
  },
  "options_page": "www/index.html#/options",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "assets/content.css"
      ],
      "js": [
        "my-content-script.js"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "short_name": "Tabworkx - Save & Switch b/n Windows of Tabs"
}