SingleTab

SingleTab

Save and Consolidate Multiple Tabs into a SingleTab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "SingleTab",
  "short_name": "SingleTab",
  "description": "Save and Consolidate Multiple Tabs into a SingleTab",
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "contextMenus",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "version": "1.2",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.js"
      ]
    }
  ],
  "manifest_version": 2,
  "browser_action": {
    "default_title": "SingleTab",
    "default_icon": {
      "16": "16.png",
      "32": "32.png",
      "48": "48.png",
      "128": "128.png",
      "150": "150.png",
      "512": "512.png"
    }
  },
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "48": "48.png",
    "128": "128.png",
    "150": "150.png",
    "512": "512.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}