YouTube Repeat Button
YouTube Repeat Button.
什么是YouTube Repeat Button?
YouTube Repeat Button是由Vladislav Tupikin开发的Chrome扩展程序,该扩展的主要功能是“YouTube Repeat Button.”。
扩展截图
下载YouTube Repeat Button扩展crx文件
下载YouTube Repeat Button扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Google Chrome extension that embeds a video repeat button directly into the YouTube player 扩展基本信息
| 名称 | |
| ID | mpaeilkfigmkompknfmmnojgkbkahfdk |
| 官方URL | https://chromewebstore.google.com/detail/youtube-repeat-button/mpaeilkfigmkompknfmmnojgkbkahfdk |
| 简介 | YouTube Repeat Button. |
| 文件大小 | 15.33 KB |
| 安装次数 | 394 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2021-01-05 |
| 上架时间 | 2019-12-20 |
| 评分 | 3.00/5 共4次评分 |
| 开发者 | Vladislav Tupikin |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 帮助页面URL | https://github.com/MrRefactoring/youtube-repeat |
| 支持的语言 | en,ru |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "__MSG_appName__",
"description": "__MSG_appDescription__",
"version": "1.0.0",
"default_locale": "en",
"icons": {
"16": "src\/images\/icons\/icon16.png",
"48": "src\/images\/icons\/icon48.png",
"128": "src\/images\/icons\/icon128.png"
},
"content_scripts": [
{
"run_at": "document_end",
"css": [
"src\/styles.css"
],
"js": [
"src\/helpers\/onElementHeightChange.js",
"src\/helpers\/onRepeatClick.js",
"src\/helpers\/removeTitle.js",
"src\/helpers\/resetTitle.js",
"src\/helpers\/createButton.js",
"src\/helpers\/patcher.js",
"src\/content.js"
],
"matches": [
"https:\/\/www.youtube.com\/*"
]
}
],
"background": {
"scripts": [
"src\/background.js"
]
},
"permissions": [
"tabs"
]
} | |