target="_blank"-toggler

target="_blank"-toggler

Toggle target="_blank" on key-press

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "target=\"_blank\"-toggler",
  "version": "0.1.0",
  "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"
      ]
    }
  ]
}