SquareSearch – A Private Search Engine
Keep your searches private by using a privacy-focused search engine.
SquareSearch – A Private Search Engineคืออะไร?
SquareSearch – A Private Search Engine เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://squaresearch.com และคุณลักษณะหลักของมันคือ "Keep your searches private by using a privacy-focused search engine."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SquareSearch – A Private Search Engine
ดาวน์โหลดไฟล์ส่วนขยาย SquareSearch – A Private Search Engine ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This search engine extension protects users from being tracked while allowing them to search the web in complete privacy. SquareSearch is a private search engine with no tracking, storing, or selling users’ search history. To protect your data, add SquareSearch as your default search provider. ★ Does NOT save, share, or sell your personal or search engine data ★ No 3rd party trackers and cookies ties to your search history ★ Ensures unprofiled search results, guaranteeing the same information for everyone ★ Search results are powered by the top search providers ------------------------------------------------------- This extension will protect your privacy while you search by changing your default search provider to SquareSearch. You can remove or disable the extension at any time. ------------------------------------------------------- By adding this extension, you agree to the our privacy policy available at https://squaresearch.com/privacy If you have questions or feedback, you can contact us here https://squaresearch.com/contact If you need help removing the SquareSearch extension, follow these steps https://squaresearch.com/faq/remove
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | nanneoedoalgnmfnepeahacgpoakegkl |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/squaresearch-%E2%80%93-a-private/nanneoedoalgnmfnepeahacgpoakegkl |
คำอธิบาย | Keep your searches private by using a privacy-focused search engine. |
ขนาดไฟล์ | 72.99 KB |
จำนวนการติดตั้ง | 57 |
เวอร์ชันปัจจุบัน | 1.0.60 |
อัปเดตครั้งล่าสุด | 2020-11-24 |
วันที่เผยแพร่ | 2020-11-03 |
ผู้พัฒนา | http://squaresearch.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://squaresearch.com |
URL หน้าช่วยเหลือ | https://squaresearch.com/contact |
URL หน้านโยบายความเป็นส่วนตัว | https://squarestartpage.com/privacy?ref=cws |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SquareSearch \u2013 A Private Search Engine", "short_name": "SquareSearch", "description": "Keep your searches private by using a privacy-focused search engine.", "version": "1.0.60", "manifest_version": 2, "icons": { "16": "\/assets\/images\/favicon-16x16.png", "32": "\/assets\/images\/favicon-32x32.png", "128": "\/assets\/images\/SS-128x128.png" }, "browser_action": { "default_icon": "\/assets\/images\/favicon-32x32.png", "default_title": "SquareSearch" }, "chrome_settings_overrides": { "search_provider": { "is_default": true, "keyword": "ss", "name": "Privately", "encoding": "UTF-8", "favicon_url": "https:\/\/squaresearch.com\/images\/squaresearch-sicon.png", "search_url": "https:\/\/squaresearch.com\/search?q={searchTerms}" } }, "background": { "scripts": [ "js\/h.js", "js\/helpers\/BrowserStorage.js", "js\/helpers\/LocalStorage.js", "js\/helpers\/Device.js", "js\/background.js" ] }, "content_scripts": [ { "all_frames": true, "js": [ "js\/h.js", "js\/helpers\/BrowserStorage.js", "js\/helpers\/LocalStorage.js", "js\/helpers\/Device.js" ], "matches": [ "https:\/\/*.squaresearch.com\/*" ], "run_at": "document_start" } ], "permissions": [ "storage", "tabs", "*:\/\/*.squaresearch.com\/" ], "content_security_policy": "default-src 'self'; style-src 'self' 'unsafe-inline'; frame-src https:\/\/*.squaresearch.com 'self'; object-src 'self'" } |