🚫 No Target Blank

🚫 No Target Blank

You don’t like pages to decide for you which links to open in a new tab? That is no more with this Add-On! It removes target='_blank' attributes from the websites you browse!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "🚫 No Target Blank",
  "version": "1.0",
  "description": "A browser extension to remove target='_blank' attributes.",
  "permissions": [
    "activeTab"
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "48": "icon.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}