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文件
下载Open in Onion Browser扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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": [] } } |