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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย joue.quroi และคุณลักษณะหลักของมันคือ "Improve your privacy while visiting unknown links or to open *.onion domains in the Tor browser"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Open in Onion Browser
ดาวน์โหลดไฟล์ส่วนขยาย 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": [] } } |