DuckDuckGo Hider/Disguiser
Search like a pro, look like a normy!
什麼是DuckDuckGo Hider/Disguiser?
DuckDuckGo Hider/Disguiser是由samgusickdev開發的Chrome擴展程式,該擴展的主要功能是“Search like a pro, look like a normy!”。
擴展截圖
下載DuckDuckGo Hider/Disguiser擴展crx文件
下載DuckDuckGo Hider/Disguiser擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
If you've ever valued your privacy on the internet, chances are DuckDuckGo is your search engine of choice. However, every DuckDuckGo user is inevitably bullied on the playground or in the workplace when they open google chrome and up pops the DuckDuckGo logo, exposing you and your non-normy searching habits. Well now you can peacefully and discretely use DuckDuckGo with this extension! Your startup and new tab pages will go directly to the DuckDuckGo Website, and swap out that Duck logo with the Google logo so you blend in with the normys and their google search engines with hideous amounts of trackers!
擴展基本資訊
名稱 | DuckDuckGo Hider/Disguiser |
ID | peejgoigkpplepmhfloekijbnneikjcb |
官方網址 | https://chromewebstore.google.com/detail/duckduckgo-hiderdisguiser/peejgoigkpplepmhfloekijbnneikjcb |
簡介 | Search like a pro, look like a normy! |
檔案大小 | 53.89 KB |
安裝次數 | 165 |
目前版本 | 1.0.0.2 |
更新時間 | 2022-09-15 |
上架時間 | 2021-06-16 |
評分 | 5.00/5 共 1 次評分 |
開發者 | samgusickdev |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "DuckDuckGo Hider\/Disguiser", "version": "1.0.0.2", "icons": { "128": "Logo-2.png" }, "author": "Sam Gusick", "description": "Search like a pro, look like a normy!", "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/duckduckgo.com\/" ], "js": [ "content.js" ] } ], "background": { "service_worker": "background.js", "type": "module" }, "permissions": [ "tabs" ], "web_accessible_resources": [ { "resources": [ "frame.html", "frame2.html" ], "matches": [ "*:\/\/duckduckgo.com\/*" ] } ], "chrome_settings_overrides": { "startup_pages": [ "https:\/\/sgusick.w3.uvm.edu\/google_logo_site\/index.html" ] } } |