BetterCacher
The BetterCacher Chrome extension will show you on the geocaching.com page if the cache is listed on BetterCacher.
Vad är BetterCacher?
BetterCacher är en Chrome-tillägg utvecklad av https://bettercacher.org, och dess huvudfunktion är "The BetterCacher Chrome extension will show you on the geocaching.com page if the cache is listed on BetterCacher.".
Tilläggsskärmbilder
Ladda ner BetterCacher-förlängningens CRX-fil
Ladda ner BetterCacher-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | BetterCacher |
ID | lbbohdofgdoajgpaafihgcbgpciecocl |
Officiell webbadress | https://chromewebstore.google.com/detail/bettercacher/lbbohdofgdoajgpaafihgcbgpciecocl |
Beskrivning | The BetterCacher Chrome extension will show you on the geocaching.com page if the cache is listed on BetterCacher. |
Filstorlek | 60.67 KB |
Antal Installationer | 173 |
Aktuell Version | 1.0.8 |
Senast Uppdaterad | 2023-09-05 |
Publiceringsdatum | 2020-04-25 |
Utvecklare | https://bettercacher.org |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://bettercacher.org/addons |
Hjälpsida URL | https://bettercacher.org/support |
URL till Sekretesspolicy Sidan | https://bettercacher.org/data-protection |
Stödda Språk | 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" } } |