Tab Holder

Tab Holder

a list where to keep your tabs instead of keeping them open.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tab Holder",
  "version": "1.4.0",
  "description": "a list where to keep your tabs instead of keeping them open.",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "chrome_url_overrides": {
    "newtab": "dashboard.html"
  },
  "permissions": [
    "storage",
    "*://*/*",
    "tabs"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}