DogDog - feed dogs with every search
DogDog feeds shelter pets with every search - for free!
¿Qué es DogDog - feed dogs with every search?
DogDog - feed dogs with every search es una extensión de Chrome desarrollada por https://dogdog.org, y su función principal es "DogDog feeds shelter pets with every search - for free!".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión DogDog - feed dogs with every search
Descarga archivos de extensión DogDog - feed dogs with every search en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
This extension replaces the default new tab view on DogDog.org, making it easy and convenient to feed dogs in need by simply searching online. 🔎 Search to raise money for shelters DogDog functions just like Yahoo, but it uses the ad revenue generated from your searches to provide food to animal shelters and dog rescues. With every search you make, you’ll be raising money to feed shelter pets in need! 🐶 Brighten your day with some cute dogs Every time you load a new tab, you’ll be greeted by a new user-uploaded dog photo. Add your own dog photos for a chance to be featured on DogDog’s homepage! Start donating food to shelters while you search now, with the DogDog extension!
Información Básica de la Extensión
Nombre | DogDog - feed dogs with every search |
ID | gfhgakhgdjniihlnjbbjhiebikhlleki |
URL Oficial | https://chromewebstore.google.com/detail/dogdog-feed-dogs-with-eve/gfhgakhgdjniihlnjbbjhiebikhlleki |
Descripción | DogDog feeds shelter pets with every search - for free! |
Tamaño del Archivo | 727 KB |
Cantidad de Instalaciones | 220 |
Versión Actual | 2.0.4 |
Última Actualización | 2023-09-12 |
Fecha de Publicación | 2021-11-09 |
Calificación | 5.00/5 Total de 6 Calificaciones |
Desarrollador | https://dogdog.org |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://www.dogdog.org/ |
URL de la Página de Política de Privacidad | https://www.goodsearch.com/privacy |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "DogDog - feed dogs with every search", "description": "DogDog feeds shelter pets with every search - for free!", "homepage_url": "https:\/\/www.dogdog.org", "action": { "default_icon": { "16": "favicon-16.png", "48": "favicon-48.png", "96": "favicon-96.png", "128": "favicon-128.png" }, "default_title": "DogDog - feed dogs with every search" }, "icons": { "16": "favicon-16.png", "48": "favicon-48.png", "96": "favicon-96.png", "128": "favicon-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.dogdog.org\/*" ], "js": [ "js\/content-script.js" ], "run_at": "document_start" } ], "chrome_url_overrides": { "newtab": "newtab.html" }, "background": { "service_worker": "js\/background.js" }, "permissions": [ "cookies" ], "host_permissions": [ "*:\/\/*.dogdog.org\/*" ], "externally_connectable": { "matches": [ "*:\/\/*.dogdog.org\/*" ] }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "manifest_version": 3, "version": "2.0.4" } |