YouTube Playback Position with Side Buttons
When hovering the video or in fullscreen use mouse forward/backward side buttons to navigate the video
什么是YouTube Playback Position with Side Buttons?
YouTube Playback Position with Side Buttons是由sanitysign开发的Chrome扩展程序,该扩展的主要功能是“When hovering the video or in fullscreen use mouse forward/backward side buttons to navigate the video”。
扩展截图
下载YouTube Playback Position with Side Buttons扩展crx文件
下载YouTube Playback Position with Side Buttons扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Allows to navigate YouTube videos using mouse side-buttons similar to many video players. Navigation will work if the video is in full screen mode or cursor hovers the video.
Extension’s popup allows to change skip time. 扩展基本信息
| 名称 | |
| ID | gdgfjcfcfkhoiebkflodhommhllbjnjd |
| 官方URL | https://chromewebstore.google.com/detail/youtube-playback-position/gdgfjcfcfkhoiebkflodhommhllbjnjd |
| 简介 | When hovering the video or in fullscreen use mouse forward/backward side buttons to navigate the video |
| 文件大小 | 21.13 KB |
| 安装次数 | 97 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2022-11-04 |
| 上架时间 | 2022-03-17 |
| 评分 | 5.00/5 共3次评分 |
| 开发者 | sanitysign |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://sanitysign.github.io/extensions-privacy-policies |
| 支持的语言 | en,ru |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_extName__",
"description": "__MSG_extDescription__",
"version": "1.0.1",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"js": [
"content.js"
]
}
],
"event_rules": [
{
"event": "declarativeContent.onPageChanged",
"actions": [
{
"type": "declarativeContent.ShowPageAction"
}
],
"conditions": [
{
"type": "declarativeContent.PageStateMatcher",
"pageUrl": {
"hostEquals": "www.youtube.com"
}
}
]
}
],
"permissions": [
"storage"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "img\/mousetube-16.png",
"32": "img\/mousetube-32.png",
"48": "img\/mousetube-48.png",
"128": "img\/mousetube-128.png"
}
},
"icons": {
"16": "img\/mousetube-16.png",
"32": "img\/mousetube-32.png",
"48": "img\/mousetube-48.png",
"128": "img\/mousetube-128.png"
},
"default_locale": "en",
"externally_connectable": {
"ids": []
}
} | |