Business App Tabmanager

Business App Tabmanager

Der Business App Tabmanager verhindert das mehrfache Öffnen von Business App in verschiedenen Browser-Tabs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Business App Tabmanager",
  "description": "Der Business App Tabmanager verhindert das mehrfache Öffnen von Business App in verschiedenen Browser-Tabs.",
  "version": "1.0.1",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "images/icon-16.png",
      "32": "images/icon-32.png",
      "48": "images/icon-48.png",
      "128": "images/icon-128.png"
    }
  },
  "permissions": [
    "tabs",
    "activeTab",
    "cookies"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{6b46e387-65dd-4178-ae20-ee6bcdcc9ba9}",
      "strict_min_version": "109.0"
    }
  }
}