_blank?

_blank?

Changes the cursor to show when a link will open a new page or tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "_blank?",
  "description": "Changes the cursor to show when a link will open a new page or tab.",
  "version": "1.0.4",
  "author": "Marcus Koosmann",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "<all_urls>"
  ],
  "icons": {
    "16": "images/alias-16.png",
    "48": "images/alias-48.png",
    "128": "images/alias-128.png"
  }
}