Youtube speed control
This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?
Youtube speed controlとは何ですか?
Youtube speed controlはwwf4によって開発されたChromeの拡張機能で、その主な機能は「This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?」です。
拡張機能のスクリーンショット
Youtube speed control拡張機能のCRXファイルをダウンロード
Youtube speed control拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
ctrl + > - to speed up video
ctrl + < - to slow down video
ctrl + ? - to return x1 speed; 拡張機能の基本情報
| 名前 | |
| ID | gdnknkknodmhgpompjfmhcodhcnamldo |
| 公式URL | https://chrome.google.com/webstore/detail/youtube-speed-control/gdnknkknodmhgpompjfmhcodhcnamldo |
| 説明 | This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ? |
| ファイルサイズ | 70.77 KB |
| インストール数 | 623 |
| 現在のバージョン | 1.1 |
| 最終更新日 | 2017-11-10 |
| 公開日 | 2017-11-10 |
| 評価 | 4.75/5 合計 4 レビュー |
| 開発者 | wwf4 |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Youtube speed control",
"description": "This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?",
"version": "1.1",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon.png"
},
"permissions": [
"activeTab",
"storage",
"https:\/\/www.youtube.com\/"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"jquery-3.2.1.min.js",
"content.js"
],
"css": [
"styles.css"
],
"all_frames": true
}
]
} | |