Always open in current tab

Always open in current tab

This basically removes target='_blank' from links and they always open in the current tab. Icon based on open new window by Syafiqa Fickle from the Noun Project

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Always open in current tab",
  "description": "This basically removes target='_blank' from links and they always open in the current tab. Icon based on open new window by Syafiqa Fickle from the Noun Project",
  "manifest_version": 2,
  "version": "1.0.2resigned1",
  "homepage_url": "https://github.com/andreicristianpetcu/always_open_in_current_tab",
  "icons": {
    "16": "images/icon-16.png",
    "19": "images/icon-19.png",
    "38": "images/icon-38.png",
    "48": "images/icon-48.png",
    "96": "images/icon-96.png",
    "128": "images/icon-128.png"
  },
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "always_open_in_current_tab.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{50aa3fa9-0000-4c5d-bdef-ce1e10a0f088}"
    }
  }
}