target="_blank"-toggler
Toggle target="_blank" on key-press
什么是target="_blank"-toggler?
target="_blank"-toggler是由augnustin开发的Chrome扩展程序,该扩展的主要功能是“Toggle target="_blank" on key-press”。
扩展截图
下载target="_blank"-toggler扩展crx文件
下载target="_blank"-toggler扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | target="_blank"-toggler |
ID | emjjmkkcdllendgbldliiphlbpnomnjk |
官方URL | https://chromewebstore.google.com/detail/targetblank-toggler/emjjmkkcdllendgbldliiphlbpnomnjk |
简介 | Toggle target="_blank" on key-press |
文件大小 | 255 KB |
安装次数 | 283 |
当前版本 | 0.1.0 |
更新时间 | 2017-11-14 |
上架时间 | 2017-11-14 |
评分 | 5.00/5 共1次评分 |
开发者 | augnustin |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/augnustin/target_blank-toggler |
帮助页面URL | https://github.com/augnustin/target_blank-toggler/issues |
支持的语言 | 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" ] } ] } |