target="_blank"-toggler
Toggle target="_blank" on key-press
What is target="_blank"-toggler?
target="_blank"-toggler is a Chrome extension developed by augnustin, and its main feature is "Toggle target="_blank" on key-press".
Extension Screenshots
Download target="_blank"-toggler Extension CRX File
Download target="_blank"-toggler extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This is a pain not to being aware whether clicking on a link will open a new tab or not. To avoid this issue, this extension brings a different cursor on new tab link openers. Besides it is possible to switch between opening new tab or not by pressing the `Ctrl`/`Cmd` + `Shift` keys. More details on the complete blog post: https://augustin-riedinger.fr/en/resources/thoughts-on-target-blank And source code is here: https://github.com/augnustin/target_blank-toggler
Extension Basic Information
Name | target="_blank"-toggler |
ID | emjjmkkcdllendgbldliiphlbpnomnjk |
Official URL | https://chromewebstore.google.com/detail/targetblank-toggler/emjjmkkcdllendgbldliiphlbpnomnjk |
Description | Toggle target="_blank" on key-press |
File Size | 255 KB |
Installation Count | 283 |
Current Version | 0.1.0 |
Last Updated | 2017-11-14 |
Publish Date | 2017-11-14 |
Rating | 5.00/5 Total 1 Ratings |
Developer | augnustin |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/augnustin/target_blank-toggler |
Help Page URL | https://github.com/augnustin/target_blank-toggler/issues |
Supported Languages | en-US |
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" ] } ] } |