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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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." } } |