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 |
| 官方網址 | 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
}
]
} | |