Youtube Playback Gearstick
Accelerates youtube playback speed when clicked going through a cycle(X0.01 X0.1 X0.25,X0.5,X1,X1.25,X1.5,X2,X2.5,X3,X3.5,X4,X5,X10)
什麼是Youtube Playback Gearstick?
Youtube Playback Gearstick是由Michael zlatin開發的Chrome擴展程式,該擴展的主要功能是“Accelerates youtube playback speed when clicked going through a cycle(X0.01 X0.1 X0.25,X0.5,X1,X1.25,X1.5,X2,X2.5,X3,X3.5,X4,X5,X10)”。
下載Youtube Playback Gearstick擴展crx文件
下載Youtube Playback Gearstick擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This is a simple extension to extend the playback speeds for YouTube™ videos.
in addition to the regular speeds (X0.25,X0.5,X1,X1.25,X1.5,X2) that YouTube™ provides it enables these speeds (X0.01 X0.1 X0.25,X0.5,X1,X1.25,X1.5,X2,X2.5,X3,X3.5,X4,X5,X10)
plus its persistent across tabs, so once a speed is set it will affect other videos on reload 擴展基本資訊
| 名稱 | |
| ID | hippcojfnmieddlhckhloiooljlnepgp |
| 官方網址 | https://chromewebstore.google.com/detail/youtube-playback-gearstic/hippcojfnmieddlhckhloiooljlnepgp |
| 簡介 | Accelerates youtube playback speed when clicked going through a cycle(X0.01 X0.1 X0.25,X0.5,X1,X1.25,X1.5,X2,X2.5,X3,X3.5,X4,X5,X10) |
| 檔案大小 | 8.11 KB |
| 安裝次數 | 192 |
| 目前版本 | 0.1 |
| 更新時間 | 2017-07-31 |
| 上架時間 | 2017-07-30 |
| 評分 | 4.00/5 共 5 次評分 |
| 開發者 | Michael zlatin |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Youtube Playback Gearstick",
"short_name": "YTG",
"description": "Accelerates youtube playback speed when clicked going through a cycle(X0.01 X0.1 X0.25,X0.5,X1,X1.25,X1.5,X2,X2.5,X3,X3.5,X4,X5,X10)",
"manifest_version": 2,
"author": "Michael Zlatin",
"version": "0.1",
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"name": "Click to change speed"
},
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"48": "off.png"
}
} | |