GiveWater
Give clean water every time you search the web.
GiveWater란 무엇입니까?
GiveWater은(는) https://givewater.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Give clean water every time you search the web."입니다.
확장 프로그램 스크린샷
GiveWater 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
➤ Overview This extension will: 1. Set your default search engine to GiveWater (powered by Bing). 2. Change your new tab page to a GiveWater search page (powered by Bing). 3. Change your omnibox search to giveWater (powered by Bing) All of the above will allow you to use your daily search habit to provide clean water to those in need. ➤ How it Works GiveWater is a search engine like Google, with the exception that we use our ad revenues to bring clean water and sanitation to those in need. This happens through our charitable partners, working together to solve the water crisis. Learn more about how we work at: https://www.givewater.com/about-givewater/. ➤ Spread the Word and Follow us on: Facebook: https://www.facebook.com/letsgivewater Instagram: https://www.instagram.com/letsgivewater Twitter: https://twitter.com/letsgivewater ➤ Let people know about GiveWater by sending a Tweet! It’s easy - just visit https://www.givewater.com/spread-the-word/
확장 프로그램 기본 정보
이름 | GiveWater |
ID | ehdmajggndopiaajpcgiieecjfpfcdoc |
공식 URL | https://chromewebstore.google.com/detail/givewater/ehdmajggndopiaajpcgiieecjfpfcdoc |
설명 | Give clean water every time you search the web. |
파일 크기 | 44.04 KB |
설치 횟수 | 898 |
현재 버전 | 1.0.11 |
최근 업데이트 | 2022-10-15 |
출시 날짜 | 2019-11-10 |
평점 | 5.00/5 총 8 개의 평점 |
개발자 | https://givewater.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.givewater.com/ |
도움말 페이지 URL | https://www.givewater.com/about-givewater/ |
개인정보 보호 정책 페이지 URL | https://www.givewater.com/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GiveWater", "manifest_version": 3, "version": "1.0.11", "description": "Give clean water every time you search the web.", "icons": { "128": ".\/images\/icon128.png", "48": ".\/images\/icon48.png", "16": ".\/images\/icon16.png" }, "action": { "default_icon": { "128": ".\/images\/icon128.png", "48": ".\/images\/icon48.png", "16": ".\/images\/icon16.png" }, "default_title": "GiveWater" }, "chrome_url_overrides": { "newtab": ".\/newTab.html" }, "chrome_settings_overrides": { "search_provider": { "encoding": "UTF-8", "favicon_url": "https:\/\/www.givewater.com\/wp-content\/themes\/givewater-2019\/assets\/icons\/favicon-32x32.png", "is_default": true, "keyword": "giveWater", "name": "giveWater Search", "search_url": "https:\/\/givewater.com\/search?q={searchTerms}&segment=givewater01" } }, "background": { "service_worker": ".\/js\/background.js", "type": "module" }, "content_security_policy": { "extension_pages": "script-src 'self' ; object-src 'self'" }, "content_scripts": [ { "matches": [ "*:\/\/www.givewater.com\/*" ], "css": [ ".\/css\/hidePopup.css" ] } ], "permissions": [ "tabs", "cookies", "storage" ], "host_permissions": [ "*:\/\/*.givewater.com\/*" ] } |