Clappe

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

什么是Clappe?

Clappe是由jukben开发的Chrome扩展程序,该扩展的主要功能是“Clap like the whole crowd. Make your claps be heard on Medium.”。

扩展截图

下载Clappe扩展crx文件

下载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
        }
    ]
}