send2cgeo
send2cgeo browser addon
send2cgeo란 무엇입니까?
send2cgeo은(는) prmtl에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "send2cgeo browser addon"입니다.
확장 프로그램 스크린샷
send2cgeo 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Browser addon for using send2cgeo feature of c:geo. It intends to replace exisitng Tampermonkey script. It allows you to send geocaches directly from your desktop browser to c:geo on your phone When entering a supported website with geocache inforamtion, send2cgeo addon will show an icon to indicate that currently viewed geocache can be send with the use of send2cgeo. Information how to set up send2cgeo server can be found on http://www.cgeo.org/send2cgeo.html Currently supported websites: * http://opencaching.pl * http://www.opencaching.de * http://www.opencaching.cz * http://www.opencachingspain.es * http://www.opencaching.fr * http://www.opencaching.it * http://www.opencaching.nl * http://www.opencaching.ro * http://opencache.uk * http://www.opencaching.us
확장 프로그램 기본 정보
이름 | send2cgeo |
ID | baflojfpgicbegbdfaklkhnjoikendeh |
공식 URL | https://chromewebstore.google.com/detail/send2cgeo/baflojfpgicbegbdfaklkhnjoikendeh |
설명 | send2cgeo browser addon |
파일 크기 | 37.11 KB |
설치 횟수 | 379 |
현재 버전 | 0.0.1 |
최근 업데이트 | 2016-11-17 |
출시 날짜 | 2016-11-17 |
개발자 | prmtl |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/prmtl/send2cgeo_addon |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "send2cgeo", "version": "0.0.1", "manifest_version": 2, "description": "send2cgeo browser addon", "author": "Sebastian Kalinowski", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "page_action": { "default_icon": { "19": "icons\/icon19.png", "38": "icons\/icon38.png" } }, "content_scripts": [ { "js": [ "content_script.js" ], "run_at": "document_start", "match_about_blank": false, "all_frames": false, "matches": [ "*:\/\/opencaching.pl\/viewcache.php*", "*:\/\/www.opencaching.de\/viewcache.php*", "*:\/\/opencaching.cz\/viewcache.php*", "*:\/\/www.opencaching.cz\/viewcache.php*", "*:\/\/www.opencachingspain.es\/viewcache.php*", "*:\/\/www.opencaching.fr\/viewcache.php*", "*:\/\/www.opencaching.it\/viewcache.php*", "*:\/\/www.opencaching.nl\/viewcache.php*", "*:\/\/www.opencaching.ro\/viewcache.php*", "*:\/\/opencache.uk\/viewcache.php*", "*:\/\/www.opencaching.us\/viewcache.php*", "*:\/\/opencaching.us\/viewcache.php*" ] } ], "permissions": [ "notifications" ] } |