Changes the cursor to show when a link will open a new page or tab.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
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"
}
}