ripple

adds a ripple to your clicks so they can be recorded for demo purposes

Wat is ripple?

ripple is een Chrome-extensie ontwikkeld door Evaw, en de belangrijkste functie is "adds a ripple to your clicks so they can be recorded for demo purposes".

Extensie Screenshots

Download het CRX-bestand van de extensie ripple

Download ripple-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam ripple ripple
ID ccaddeihobjfjhpidfolokbffjnacfae
Officiële URL https://chromewebstore.google.com/detail/ripple/ccaddeihobjfjhpidfolokbffjnacfae
Beschrijving adds a ripple to your clicks so they can be recorded for demo purposes
Bestandsgrootte 356 KB
Aantal Installaties 2,105
Huidige Versie 2.0.1
Laatst Bijgewerkt 2016-04-09
Publicatiedatum 2016-04-08
Beoordeling 2.89/5 Totaal 9 Beoordelingen
Ontwikkelaar Evaw
Betalingswijze free
Extensiewebsite https://github.com/Evaw/ripple
Ondersteunde Talen 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"
    ]
}