GeocachingUtils
A collection of useful features that enhances geocaching.com
GeocachingUtils란 무엇입니까?
GeocachingUtils은(는) butl에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A collection of useful features that enhances geocaching.com"입니다.
확장 프로그램 스크린샷
GeocachingUtils 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 } |