ripple
adds a ripple to your clicks so they can be recorded for demo purposes
rippleとは何ですか?
rippleはEvawによって開発されたChromeの拡張機能で、その主な機能は「adds a ripple to your clicks so they can be recorded for demo purposes」です。
拡張機能のスクリーンショット
ripple拡張機能のCRXファイルをダウンロード
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. 拡張機能の基本情報
| 名前 | |
| 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"
]
} | |