Key-ncognito
Use a keyboard shortcut to open links incognito.
What is Key-ncognito?
Key-ncognito is a Chrome extension developed by https://www.musicallyut.in, and its main feature is "Use a keyboard shortcut to open links incognito.".
Extension Screenshots
Download Key-ncognito Extension CRX File
Download Key-ncognito extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Key-ncognito |
ID | lilomadmkegmkmkjmdbbgalimcmfogfk |
Official URL | https://chromewebstore.google.com/detail/key-ncognito/lilomadmkegmkmkjmdbbgalimcmfogfk |
Description | Use a keyboard shortcut to open links incognito. |
File Size | 750 KB |
Installation Count | 410 |
Current Version | 2.0.0 |
Last Updated | 2020-05-21 |
Publish Date | 2020-05-21 |
Rating | 5.00/5 Total 8 Ratings |
Developer | https://www.musicallyut.in |
[email protected] | |
Payment Type | free |
Extension Website | http://www.musicallyut.in |
Help Page URL | https://github.com/musically-ut/key-ncognito/issues |
Supported Languages | 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." } } |