Key-ncognito
Use a keyboard shortcut to open links incognito.
什麼是Key-ncognito?
Key-ncognito是由https://www.musicallyut.in開發的Chrome擴展程式,該擴展的主要功能是“Use a keyboard shortcut to open links incognito.”。
擴展截圖
下載Key-ncognito擴展crx文件
下載Key-ncognito擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Key-ncognito |
ID | lilomadmkegmkmkjmdbbgalimcmfogfk |
官方網址 | https://chromewebstore.google.com/detail/key-ncognito/lilomadmkegmkmkjmdbbgalimcmfogfk |
簡介 | Use a keyboard shortcut to open links incognito. |
檔案大小 | 750 KB |
安裝次數 | 410 |
目前版本 | 2.0.0 |
更新時間 | 2020-05-21 |
上架時間 | 2020-05-21 |
評分 | 5.00/5 共 8 次評分 |
開發者 | https://www.musicallyut.in |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | http://www.musicallyut.in |
說明頁面URL | https://github.com/musically-ut/key-ncognito/issues |
支援的語言 | 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." } } |