Tabloc

Tabloc

Open new tabs when you click links.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tabloc",
  "version": "0.5",
  "manifest_version": 3,
  "description": "__MSG_description__",
  "default_locale": "en",
  "icons": {
    "16": "tabloc.png",
    "48": "tabloc_48.png"
  },
  "action": {
    "default_icon": "tabloc.png",
    "default_title": "__MSG_action_title__"
  },
  "background": {
    "service_worker": "tabloc_bg.js",
    "type": "module"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "tabloc.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ]
}