ripple
adds a ripple to your clicks so they can be recorded for demo purposes
What is ripple?
ripple is a Chrome extension developed by Evaw, and its main feature is "adds a ripple to your clicks so they can be recorded for demo purposes".
Extension Screenshots
Download ripple Extension CRX File
Download ripple extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | ripple |
ID | ccaddeihobjfjhpidfolokbffjnacfae |
Official URL | https://chromewebstore.google.com/detail/ripple/ccaddeihobjfjhpidfolokbffjnacfae |
Description | adds a ripple to your clicks so they can be recorded for demo purposes |
File Size | 356 KB |
Installation Count | 2,105 |
Current Version | 2.0.1 |
Last Updated | 2016-04-09 |
Publish Date | 2016-04-08 |
Rating | 2.89/5 Total 9 Ratings |
Developer | Evaw |
Payment Type | free |
Extension Website | https://github.com/Evaw/ripple |
Supported Languages | 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" ] } |