ripple
adds a ripple to your clicks so they can be recorded for demo purposes
Co to jest ripple?
ripple to rozszerzenie Chrome opracowane przez Evaw, a jego główną funkcją jest „adds a ripple to your clicks so they can be recorded for demo purposes”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia ripple
Pobierz pliki rozszerzeń ripple w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | ccaddeihobjfjhpidfolokbffjnacfae |
| Oficjalny URL | https://chromewebstore.google.com/detail/ripple/ccaddeihobjfjhpidfolokbffjnacfae |
| Opis | adds a ripple to your clicks so they can be recorded for demo purposes |
| Rozmiar pliku | 356 KB |
| Liczba instalacji | 2,105 |
| Aktualna Wersja | 2.0.1 |
| Ostatnia Aktualizacja | 2016-04-09 |
| Data Publikacji | 2016-04-08 |
| Ocena | 2.89/5 Łącznie 9 Oceny |
| Deweloper | Evaw |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/Evaw/ripple |
| Obsługiwane Języki | 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"
]
} | |