BetterCacher
The BetterCacher Chrome extension will show you on the geocaching.com page if the cache is listed on BetterCacher.
Что такое BetterCacher?
BetterCacher - это расширение Chrome, разработанное https://bettercacher.org, и его основная функция - "The BetterCacher Chrome extension will show you on the geocaching.com page if the cache is listed on BetterCacher.".
Снимки экрана расширения
Скачать файл CRX расширения BetterCacher
Скачайте файлы расширений BetterCacher в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | BetterCacher |
ID | lbbohdofgdoajgpaafihgcbgpciecocl |
Официальный URL | https://chromewebstore.google.com/detail/bettercacher/lbbohdofgdoajgpaafihgcbgpciecocl |
Описание | The BetterCacher Chrome extension will show you on the geocaching.com page if the cache is listed on BetterCacher. |
Размер файла | 60.67 KB |
Количество установок | 173 |
Текущая Версия | 1.0.8 |
Последнее Обновление | 2023-09-05 |
Дата публикации | 2020-04-25 |
Разработчик | https://bettercacher.org |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://bettercacher.org/addons |
URL страницы помощи | https://bettercacher.org/support |
URL страницы политики конфиденциальности | https://bettercacher.org/data-protection |
Поддерживаемые языки | 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" } } |