GeocachingUtils
A collection of useful features that enhances geocaching.com
GeocachingUtils क्या है?
GeocachingUtils butl द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A collection of useful features that enhances geocaching.com"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GeocachingUtils एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Geocaching Utils is an open source extension that adds features to the geocaching.com website. Features: - Show friend logs in the sidebar on the right. When you hover over an entry, the log text pops up - Log editor is improved to make using smileys and tags easier - Log editor can also count the words in your log text and predict the "The Author" badge that you will earn - Hints can be decrypted automatically without clicking on "Decrypt" - Almost everything in this feature list can be configured and enabled/disabled in the settings of this extension. This extension is an open source project. Feel free to report bugs and contribute to the code here: https://github.com/ControlTheBit/geocachingUtils For more information on the badges, see project-gc.com and badgeGen.com.
एक्सटेंशन की मूल जानकारी
नाम | GeocachingUtils |
ID | aiddapoflafkbecobkoiakgagaijacaa |
आधिकारिक URL | https://chromewebstore.google.com/detail/geocachingutils/aiddapoflafkbecobkoiakgagaijacaa |
विवरण | A collection of useful features that enhances geocaching.com |
फ़ाइल का आकार | 80.82 KB |
स्थापना संख्या | 904 |
वर्तमान संस्करण | 2.2.0 |
अंतिम अपडेट | 2021-06-17 |
प्रकाशन तिथि | 2019-10-06 |
रेटिंग | 5.00/5 कुल 3 रेटिंग्स |
डेवलपर | butl |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/ControlTheBit/geocachingUtils |
सहायता पृष्ठ URL | https://github.com/ControlTheBit/geocachingUtils |
समर्थित भाषाएँ | de,en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GeocachingUtils", "description": "__MSG_extension_description__", "version": "2.2.0", "permissions": [ "storage" ], "options_page": "settings\/settings.html", "default_locale": "en", "content_scripts": [ { "matches": [ "https:\/\/www.geocaching.com\/*" ], "css": [ "css\/style.css" ], "js": [ "js\/lib\/jquery-3.1.0.min.js", "js\/common.js", "js\/feature\/friendLogList.js", "js\/feature\/autoDecryptHint.js", "js\/feature\/logEditor\/logEditorCommon.js", "js\/feature\/logEditor\/logEditorInsertionPopup.js", "js\/feature\/logEditor\/logEditorWordCount.js", "js\/start.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "img\/friendLogList\/spinner.gif", "img\/appIcon\/appIcon16.png", "img\/appIcon\/appIcon26.png", "img\/logEditor\/*" ], "browser_action": { "default_title": "Geocaching Utils", "default_icon": { "16": "img\/appIcon\/appIcon16.png", "48": "img\/appIcon\/appIcon48.png" }, "default_popup": "popup\/popup.html" }, "icons": { "16": "img\/appIcon\/appIcon16.png", "48": "img\/appIcon\/appIcon48.png", "128": "img\/appIcon\/appIcon128.png" }, "manifest_version": 2 } |