ripple
adds a ripple to your clicks so they can be recorded for demo purposes
什麼是ripple?
ripple是由Evaw開發的Chrome擴展程式,該擴展的主要功能是“adds a ripple to your clicks so they can be recorded for demo purposes”。
擴展截圖
下載ripple擴展crx文件
下載ripple擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
when you record a video, it is not clear that you have clicked an item on the page. This extension will add a ripple to your mouse clicks. 擴展基本資訊
| 名稱 | |
| ID | ccaddeihobjfjhpidfolokbffjnacfae |
| 官方網址 | https://chromewebstore.google.com/detail/ripple/ccaddeihobjfjhpidfolokbffjnacfae |
| 簡介 | adds a ripple to your clicks so they can be recorded for demo purposes |
| 檔案大小 | 356 KB |
| 安裝次數 | 2,105 |
| 目前版本 | 2.0.1 |
| 更新時間 | 2016-04-09 |
| 上架時間 | 2016-04-08 |
| 評分 | 2.89/5 共 9 次評分 |
| 開發者 | Evaw |
| 付費類型 | free |
| 擴展官網 | https://github.com/Evaw/ripple |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "ripple",
"version": "2.0.1",
"icons": {
"48": "icon48.png",
"128": "icon128.png"
},
"description": "adds a ripple to your clicks so they can be recorded for demo purposes",
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"node_modules\/d3\/d3.min.js",
"content-script.js"
]
}
],
"background": {
"scripts": [
"popup.js"
]
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"browser_action": {
"default_icon": "iconoff128.png",
"__default_popup": "popup.html"
},
"permissions": [
"tabs",
"storage"
]
} | |