send2cgeo

send2cgeo browser addon

send2cgeoคืออะไร?

send2cgeo เป็นส่วนขยายของ Chrome ที่พัฒนาโดย prmtl และคุณลักษณะหลักของมันคือ "send2cgeo browser addon"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย send2cgeo

ดาวน์โหลดไฟล์ส่วนขยาย send2cgeo ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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"
    ]
}