ripple
adds a ripple to your clicks so they can be recorded for demo purposes
Cos'è ripple?
ripple è un'estensione di Chrome sviluppata da Evaw, e la sua funzione principale è "adds a ripple to your clicks so they can be recorded for demo purposes".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ripple
Scarica i file di estensione ripple in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | ccaddeihobjfjhpidfolokbffjnacfae |
| URL Ufficiale | https://chromewebstore.google.com/detail/ripple/ccaddeihobjfjhpidfolokbffjnacfae |
| Descrizione | adds a ripple to your clicks so they can be recorded for demo purposes |
| Dimensione del File | 356 KB |
| Conteggio Installazioni | 2,105 |
| Versione Corrente | 2.0.1 |
| Ultimo Aggiornamento | 2016-04-09 |
| Data di Pubblicazione | 2016-04-08 |
| Valutazione | 2.89/5 Totale 9 Valutazioni |
| Sviluppatore | Evaw |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/Evaw/ripple |
| Lingue Supportate | 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"
]
} | |