Pinned Tab Keeper

Pinned Tab Keeper

Open links and bookmarks opened on the pinned tab in a new tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_ext_name__",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": "__MSG_ext_description__",
  "default_locale": "ja",
  "icons": {
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "*://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  }
}