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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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" ] } |