ripple

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

rippleคืออะไร?

ripple เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Evaw และคุณลักษณะหลักของมันคือ "adds a ripple to your clicks so they can be recorded for demo purposes"

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ripple

ดาวน์โหลดไฟล์ส่วนขยาย ripple ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ ripple ripple
ID ccaddeihobjfjhpidfolokbffjnacfae
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ripple/ccaddeihobjfjhpidfolokbffjnacfae
คำอธิบาย adds a ripple to your clicks so they can be recorded for demo purposes
ขนาดไฟล์ 356 KB
จำนวนการติดตั้ง 2,105
เวอร์ชันปัจจุบัน 2.0.1
อัปเดตครั้งล่าสุด 2016-04-09
วันที่เผยแพร่ 2016-04-08
คะแนน 2.89/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา Evaw
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Evaw/ripple
ภาษาที่รองรับ 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"
    ]
}