ripple
adds a ripple to your clicks so they can be recorded for demo purposes
Was ist ripple?
ripple ist eine Chrome-Erweiterung, die von Evaw entwickelt wurde, und ihr Hauptmerkmal ist "adds a ripple to your clicks so they can be recorded for demo purposes".
Erweiterungsscreenshots
ripple-Erweiterungs-CRX-Datei herunterladen
Laden Sie ripple-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ccaddeihobjfjhpidfolokbffjnacfae |
| Offizielle URL | https://chromewebstore.google.com/detail/ripple/ccaddeihobjfjhpidfolokbffjnacfae |
| Beschreibung | adds a ripple to your clicks so they can be recorded for demo purposes |
| Dateigröße | 356 KB |
| Installationsanzahl | 2,105 |
| Aktuelle Version | 2.0.1 |
| Letztes Update | 2016-04-09 |
| Veröffentlichungsdatum | 2016-04-08 |
| Bewertung | 2.89/5 Insgesamt 9 Bewertungen |
| Entwickler | Evaw |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/Evaw/ripple |
| Unterstützte Sprachen | 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"
]
} | |