Open pop-up as tab

Open pop-up as tab

Forces Chrome to open new tabs instead of pop-up windows.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "sergiy.net",
  "background": {
    "service_worker": "service_worker.js"
  },
  "action": {
    "default_icon": "icon128.png",
    "default_popup": "popup.html",
    "default_title": "Open link in same tab, pop-up as tab"
  },
  "description": "Forces Chrome to open new tabs instead of pop-up windows.",
  "icons": {
    "128": "icon128.png"
  },
  "manifest_version": 3,
  "name": "Open pop-up as tab",
  "short_name": "Popup-As-Tab",
  "permissions": [
    "tabs",
    "storage"
  ],
  "version": "1.2.1",
  "content_security_policy": {}
}