Key-ncognito
Use a keyboard shortcut to open links incognito.
Key-ncognito là gì?
Key-ncognito là một tiện ích mở rộng Chrome được phát triển bởi https://www.musicallyut.in, và tính năng chính của nó là "Use a keyboard shortcut to open links incognito.".
Ả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 Key-ncognito
Tải xuống các tệp mở rộng Key-ncognito 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 plugin allows you to use a key combination and click to open a link in an incognito window. If you open links incognito several times a day, this plugin can be a great time-saver. The default key combination is Shift + Meta + Click. It can be changed via the Options page. Whether the new tabs open in a new window each time or in the same window can also be configured. The Meta key could be the Command Key (on Mac), the Win Key (on Windows), Context/Menu Key (on Linux) or any other system determined key.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Key-ncognito |
ID | lilomadmkegmkmkjmdbbgalimcmfogfk |
URL Chính Thức | https://chromewebstore.google.com/detail/key-ncognito/lilomadmkegmkmkjmdbbgalimcmfogfk |
Mô tả | Use a keyboard shortcut to open links incognito. |
Kích Thước Tệp | 750 KB |
Số Lần Cài Đặt | 410 |
Phiên Bản Hiện Tại | 2.0.0 |
Cập Nhật Lần Cuối | 2020-05-21 |
Ngày Phát Hành | 2020-05-21 |
Đánh Giá | 5.00/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | https://www.musicallyut.in |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://www.musicallyut.in |
URL Trang Trợ Giúp | https://github.com/musically-ut/key-ncognito/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Key-ncognito", "version": "2.0.0", "manifest_version": 2, "description": "Use a keyboard shortcut to open links incognito.", "homepage_url": "http:\/\/musicallyut.in", "icons": { "128": "icons\/key-ncognito-128.png" }, "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "permissions": [ "storage", "tabs", "https:\/\/*\/*", "http:\/\/*\/*" ], "options_page": "src\/options\/index.html", "options_ui": { "page": "src\/options\/index.html" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "src\/inject\/handler.js", "src\/inject\/inject.js" ], "run_at": "document_end", "all_frames": true } ], "browser_action": { "default_title": "Open same URL in incognito mode." } } |