Open in Onion Browser
Improve your privacy while visiting unknown links or to open *.onion domains in the Tor browser
Open in Onion Browser란 무엇입니까?
Open in Onion Browser은(는) joue.quroi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Improve your privacy while visiting unknown links or to open *.onion domains in the Tor browser"입니다.
확장 프로그램 스크린샷
Open in Onion Browser 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Features: 1. Open links in the Tor browser 2. Open the current page in the Tor browser 3. Automatically detects the Tor browser and optionally allows the user to configure the path 4. Supports custom keyboard shortcut to open links with left-click and keyboard shortcut combination Use Cases: 1. It can be used to improve the user privacy by sending unknown links to the Tor browser 2. It can be used to open "*.onion" links/ How does it work? This extension needs a native client to pass the links to the Tor browser. You need to install this native client on the first use. Currently, the native client is only supporting Windows, Mac, and Linux operating systems. Privacy & Policy: 1. This extension has no relation to the Tor browser. It is an independent project that only sends links to this browser 2. This extension works offline. No data is sent or received from any servers. 3. The only purpose of this extension is to ease the Tor browser's access without the need to copy and paste links between the browsers.
확장 프로그램 기본 정보
이름 | Open in Onion Browser |
ID | balknnpjeohaolphkfhghbaapifbokik |
공식 URL | https://chromewebstore.google.com/detail/open-in-onion-browser/balknnpjeohaolphkfhghbaapifbokik |
설명 | Improve your privacy while visiting unknown links or to open *.onion domains in the Tor browser |
파일 크기 | 207 KB |
설치 횟수 | 1,521 |
현재 버전 | 0.2.1 |
최근 업데이트 | 2023-10-15 |
출시 날짜 | 2022-04-16 |
개발자 | joue.quroi |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://webextension.org/listing/open-in.html?from=tor |
도움말 페이지 URL | https://webextension.org/listing/open-in.html?from=tor |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Open in Onion Browser", "description": "Improve your privacy while visiting unknown links or to open *.onion domains in the Tor browser", "version": "0.2.1", "permissions": [ "storage", "activeTab", "contextMenus", "nativeMessaging" ], "optional_permissions": [ "downloads" ], "background": { "service_worker": "worker.js" }, "homepage_url": "https:\/\/webextension.org\/listing\/open-in.html?from=tor", "icons": { "16": "\/data\/icons\/16.png", "32": "\/data\/icons\/32.png", "48": "\/data\/icons\/48.png", "64": "\/data\/icons\/64.png", "128": "\/data\/icons\/128.png", "256": "\/data\/icons\/256.png", "512": "\/data\/icons\/512.png" }, "action": [], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "\/data\/inject\/main.js" ], "world": "MAIN", "run_at": "document_start", "all_frames": true }, { "matches": [ "*:\/\/*\/*" ], "js": [ "\/data\/inject\/isolated.js" ], "world": "ISOLATED", "run_at": "document_start", "all_frames": true } ], "options_ui": { "page": "\/data\/options\/index.html", "open_in_tab": true }, "commands": { "_execute_action": [] } } |