target="_blank"-toggler

target="_blank"-toggler

This addon changes the cursor when hovering a link that will open a new tab. It is possible to stay in current tab by pressing `Ctrl`/`Cmd` + `Shift`.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "target=\"_blank\"-toggler",
  "version": "0.1.1resigned1",
  "manifest_version": 2,
  "description": "Toggle target=\"_blank\" on key-press",
  "homepage_url": "https://augustin-riedinger.fr/en/resources/thoughts-on-target-blank",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "web_accessible_resources": [
    "src/style.css",
    "images/cursor.png",
    "images/cursor-ext.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "src/style.css"
      ],
      "js": [
        "src/toggler.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{3ce760d0-7209-41a2-9981-5216731abef0}"
    }
  }
}