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. 拡張機能の基本情報
| 名前 | |
| 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
}
]
} | |