CacheList
CacheList is plugin for Geocaching. It makes it easy to create a printable list of caches and generating LOC, GPX, WPT, KML... files
CacheList란 무엇입니까?
CacheList은(는) https://radekbaxa.cz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "CacheList is plugin for Geocaching. It makes it easy to create a printable list of caches and generating LOC, GPX, WPT, KML... files"입니다.
확장 프로그램 스크린샷
CacheList 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
PRIVACY POLICY - Please read https://www.radekbaxa.cz/chrome-extension-privacy-policy.html - Sumup: Every possible transmission is via secure (HTTPS) protocol! Only non-identification information is collected internally in this CacheList extension = no way to transfer anywhere. CacheList permission explanation: --------------------------------- CacheList needs permission for access to Geocaching website https://www.geocaching.com/* (secure https variant, of course), because CacheList asynchronously read data about selected Geocaching “Cache” by you -> and thanks to it, CacheList can locally save this information for future printing or generating file (gpx, loc, kml and other formats) for you. CacheList needs place content scripts (JavaScript script executed on Geocaching pages) because it is required to place the CacheList action button (icon) for collecting concrete selected Geocaching “Cache”.
확장 프로그램 기본 정보
이름 | CacheList |
ID | amhhdbdhoghppijbjfdkiaconkmfbbpa |
공식 URL | https://chromewebstore.google.com/detail/cachelist/amhhdbdhoghppijbjfdkiaconkmfbbpa |
설명 | CacheList is plugin for Geocaching. It makes it easy to create a printable list of caches and generating LOC, GPX, WPT, KML... files |
파일 크기 | 584 KB |
설치 횟수 | 10,528 |
현재 버전 | 4.1.8 |
최근 업데이트 | 2020-06-21 |
출시 날짜 | 2020-06-20 |
평점 | 4.65/5 총 130 개의 평점 |
개발자 | https://radekbaxa.cz |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.radekbaxa.cz/chrome-extension-privacy-policy.html |
도움말 페이지 URL | https://www.radekbaxa.cz/chrome-extension-privacy-policy.html |
개인정보 보호 정책 페이지 URL | https://www.radekbaxa.cz/chrome-extension-privacy-policy.html |
지원되는 언어 | en,cs |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CacheList", "version": "4.1.8", "default_locale": "en", "description": "__MSG_ManifestDescription__", "icons": { "16": "img\/map_16.png", "32": "img\/map_32.png", "48": "img\/map_48.png", "128": "img\/map_128.png", "256": "img\/map_256.png" }, "browser_action": { "default_title": "CacheList", "default_icon": "\/img\/map_256.png", "default_popup": "popup.html" }, "author": "Radek Baxa", "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.geocaching.com\/map\/*" ], "js": [ "jquery-1.10.2.min.js", "content-script-map2.js" ] }, { "matches": [ "https:\/\/www.geocaching.com\/geocache\/*", "https:\/\/www.geocaching.com\/seek\/cache_details.aspx*" ], "js": [ "jquery-1.10.2.min.js", "content-script-cache.js" ] } ], "options_page": "options.html", "permissions": [ "https:\/\/www.geocaching.com\/*" ] } |