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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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" ] } } |