target="_blank"-toggler
Toggle target="_blank" on key-press
Co je target="_blank"-toggler?
target="_blank"-toggler je rozšíření Chrome vyvinuté augnustin, a jeho hlavní funkcí je „Toggle target="_blank" on key-press“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření target="_blank"-toggler
Stáhněte si soubory rozšíření target="_blank"-toggler ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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 Základní Informace o Rozšíření
| Název | |
| ID | emjjmkkcdllendgbldliiphlbpnomnjk |
| Oficiální URL | https://chromewebstore.google.com/detail/targetblank-toggler/emjjmkkcdllendgbldliiphlbpnomnjk |
| Popis | Toggle target="_blank" on key-press |
| Velikost souboru | 255 KB |
| Počet instalací | 283 |
| Aktuální Verze | 0.1.0 |
| Poslední Aktualizace | 2017-11-14 |
| Datum Vydání | 2017-11-14 |
| Hodnocení | 5.00/5 Celkem 1 Hodnocení |
| Vývojář | augnustin |
| [email protected] | |
| Typ Platby | free |
| Webové stránky Rozšíření | https://github.com/augnustin/target_blank-toggler |
| URL Stránky Nápovědy | https://github.com/augnustin/target_blank-toggler/issues |
| Podporované Jazyky | 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"
]
}
]
} | |