ripple

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

Apa itu ripple?

ripple adalah ekstensi Chrome yang dikembangkan oleh Evaw, dan fitur utamanya adalah "adds a ripple to your clicks so they can be recorded for demo purposes".

Screenshot Ekstensi

Unduh Berkas CRX Ekstensi ripple

Unduh file ekstensi ripple dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama ripple ripple
ID ccaddeihobjfjhpidfolokbffjnacfae
URL Resmi https://chromewebstore.google.com/detail/ripple/ccaddeihobjfjhpidfolokbffjnacfae
Deskripsi adds a ripple to your clicks so they can be recorded for demo purposes
Ukuran File 356 KB
Jumlah Instalasi 2,105
Versi Saat Ini 2.0.1
Terakhir Diperbarui 2016-04-09
Tanggal Publikasi 2016-04-08
Penilaian 2.89/5 Total 9 Penilaian
Pengembang Evaw
Tipe Pembayaran free
Situs Ekstensi https://github.com/Evaw/ripple
Bahasa yang Didukung 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"
    ]
}