Auto Replay YouTube™ Videos
Auto replay your favorite youtube videos in a loop with zero clicks!
什么是Auto Replay YouTube™ Videos?
Auto Replay YouTube™ Videos是由https://opensourceforgeeks.blogspot.com开发的Chrome扩展程序,该扩展的主要功能是“Auto replay your favorite youtube videos in a loop with zero clicks!”。
扩展截图
下载Auto Replay YouTube™ Videos扩展crx文件
下载Auto Replay YouTube™ Videos扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
* Replay your favorite youtube videos automatically with 0 clicks.
* Optional settings to turn off the auto looping behavior in a single click.
* Easy to use extension with visibility limited to youtube only.
* Auto play setting is changed based on looping status. 扩展基本信息
| 名称 | |
| ID | mepicphbpehnpdkmnphaepbglimkeedp |
| 官方URL | https://chromewebstore.google.com/detail/auto-replay-youtube-video/mepicphbpehnpdkmnphaepbglimkeedp |
| 简介 | Auto replay your favorite youtube videos in a loop with zero clicks! |
| 文件大小 | 72.76 KB |
| 安装次数 | 682 |
| 当前版本 | 0.0.3 |
| 更新时间 | 2018-02-28 |
| 上架时间 | 2018-02-27 |
| 评分 | 4.43/5 共7次评分 |
| 开发者 | https://opensourceforgeeks.blogspot.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Auto Replay YouTube\u2122 Videos",
"version": "0.0.3",
"manifest_version": 2,
"description": "Auto replay your favorite youtube videos in a loop with zero clicks!",
"icons": {
"48": "icon-48.png",
"128": "icon-128.png"
},
"page_action": {
"default_icon": "icon-19.png",
"default_title": "Toggle YouTube replay"
},
"background": {
"scripts": [
"jquery-1.7.1.min.js",
"background.js"
],
"persistent": false
},
"permissions": [
"declarativeContent",
"activeTab",
"notifications"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"jquery-1.7.1.min.js",
"waitForKeyElements.js",
"contentscript.js"
],
"run_at": "document_end",
"all_frames": true
}
]
} | |