BetterCacher
The BetterCacher Chrome extension will show you on the geocaching.com page if the cache is listed on BetterCacher.
¿Qué es BetterCacher?
BetterCacher es una extensión de Chrome desarrollada por https://bettercacher.org, y su función principal es "The BetterCacher Chrome extension will show you on the geocaching.com page if the cache is listed on BetterCacher.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión BetterCacher
Descarga archivos de extensión BetterCacher 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
Powered by the BetterCacher API. Supports the languages English, German, Dutch and Polish. What is BetterCacher? More information can be found here: bettercacher.org/redirecting?link=how-it-works
Información Básica de la Extensión
Nombre | BetterCacher |
ID | lbbohdofgdoajgpaafihgcbgpciecocl |
URL Oficial | https://chromewebstore.google.com/detail/bettercacher/lbbohdofgdoajgpaafihgcbgpciecocl |
Descripción | The BetterCacher Chrome extension will show you on the geocaching.com page if the cache is listed on BetterCacher. |
Tamaño del Archivo | 60.67 KB |
Cantidad de Instalaciones | 173 |
Versión Actual | 1.0.8 |
Última Actualización | 2023-09-05 |
Fecha de Publicación | 2020-04-25 |
Desarrollador | https://bettercacher.org |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://bettercacher.org/addons |
URL de la Página de Ayuda | https://bettercacher.org/support |
URL de la Página de Política de Privacidad | https://bettercacher.org/data-protection |
Idiomas Soportados | de,en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "BetterCacher", "short_name": "BetterCacher", "version": "1.0.8", "author": "BetterCacher Team", "manifest_version": 3, "default_locale": "en", "description": "__MSG_description__", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.geocaching.com\/*", "http:\/\/*.geocaching.com\/*", "https:\/\/*.bettercacher.org\/*" ], "js": [ "jquery.min.js", "content-script.js" ], "run_at": "document_end" } ], "host_permissions": [ "https:\/\/*.geocaching.com\/*", "http:\/\/*.geocaching.com\/*", "https:\/\/*.bettercacher.org\/*" ], "action": { "default_popup": "popup.html" }, "icons": { "16": "icon_16.png", "128": "icon_128.png" } } |