target="_blank"-toggler
Toggle target="_blank" on key-press
target="_blank"-toggler là gì?
target="_blank"-toggler là một tiện ích mở rộng Chrome được phát triển bởi augnustin, và tính năng chính của nó là "Toggle target="_blank" on key-press".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng target="_blank"-toggler
Tải xuống các tệp mở rộng target="_blank"-toggler dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | target="_blank"-toggler |
ID | emjjmkkcdllendgbldliiphlbpnomnjk |
URL Chính Thức | https://chromewebstore.google.com/detail/targetblank-toggler/emjjmkkcdllendgbldliiphlbpnomnjk |
Mô tả | Toggle target="_blank" on key-press |
Kích Thước Tệp | 255 KB |
Số Lần Cài Đặt | 283 |
Phiên Bản Hiện Tại | 0.1.0 |
Cập Nhật Lần Cuối | 2017-11-14 |
Ngày Phát Hành | 2017-11-14 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | augnustin |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/augnustin/target_blank-toggler |
URL Trang Trợ Giúp | https://github.com/augnustin/target_blank-toggler/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |