Unique Tab

Unique Tab

Makes sure that the same url is only open once across all tabs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Unique Tab",
  "version": "1.0",
  "description": "Makes sure that the same url is only open once across all tabs",
  "permissions": [
    "declarativeContent",
    "storage",
    "activeTab",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_page": "options.html",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "manifest_version": 2
}