GiveWater
Give clean water every time you search the web.
Τι είναι το GiveWater;
Το GiveWater είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://givewater.com, και η κύρια λειτουργία του είναι "Give clean water every time you search the web.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης GiveWater
Λήψη αρχείων επέκτασης GiveWater σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
➤ 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\/*" ] } |