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 |
| 官方URL | 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"
]
} | |