ripple

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

ripple là gì?

ripple là một tiện ích mở rộng Chrome được phát triển bởi Evaw, và tính năng chính của nó là "adds a ripple to your clicks so they can be recorded for demo purposes".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng ripple

Tải xuống các tệp mở rộng ripple dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ripple ripple
ID ccaddeihobjfjhpidfolokbffjnacfae
URL Chính Thức https://chromewebstore.google.com/detail/ripple/ccaddeihobjfjhpidfolokbffjnacfae
Mô tả adds a ripple to your clicks so they can be recorded for demo purposes
Kích Thước Tệp 356 KB
Số Lần Cài Đặt 2,105
Phiên Bản Hiện Tại 2.0.1
Cập Nhật Lần Cuối 2016-04-09
Ngày Phát Hành 2016-04-08
Đánh Giá 2.89/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Evaw
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Evaw/ripple
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}