Clappe

Clap like the whole crowd. Make your claps be heard on Medium.

Clappeคืออะไร?

Clappe เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jukben และคุณลักษณะหลักของมันคือ "Clap like the whole crowd. Make your claps be heard on Medium."

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

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

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

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

                        Tiny extension to make your claps be heard on Medium. Also providing super clap functionality if you want to be really supportive as a crowd.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Clappe Clappe
ID gfmcijindndhaflgmmkkcihndcclaled
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/clappe/gfmcijindndhaflgmmkkcihndcclaled
คำอธิบาย Clap like the whole crowd. Make your claps be heard on Medium.
ขนาดไฟล์ 296 KB
จำนวนการติดตั้ง 83
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2018-12-13
วันที่เผยแพร่ 2018-12-13
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา jukben
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jukben/clappe
URL หน้าช่วยเหลือ https://github.com/jukben/clappe/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "1.1.0",
    "short_name": "__MSG_appShortName__",
    "manifest_version": 2,
    "default_locale": "en",
    "web_accessible_resources": [
        "sounds\/*"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "storage"
    ],
    "page_action": {
        "default_title": "__MSG_browserActionTitle__"
    },
    "options_page": "pages\/options.html",
    "options_ui": {
        "page": "pages\/options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "styles\/contentscript.css"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}