YouTube Repeat
Repeats a YouTube video
什么是YouTube Repeat?
YouTube Repeat是由Jimmy Fu开发的Chrome扩展程序,该扩展的主要功能是“Repeats a YouTube video”。
扩展截图
下载YouTube Repeat扩展crx文件
下载YouTube Repeat扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Minimalistic extension for replaying YouTube videos. Instructions: 1) Open a YouTube video 2) On the top-right corner, a repeat icon will appear (See screenshot if you are confused) 3) Press it to enable or disable
扩展基本信息
名称 | YouTube Repeat |
ID | bijjfhgimphjklllkmbdapkfemdnhmpj |
官方URL | https://chromewebstore.google.com/detail/youtube-repeat/bijjfhgimphjklllkmbdapkfemdnhmpj |
简介 | Repeats a YouTube video |
文件大小 | 24.45 KB |
安装次数 | 2,323 |
当前版本 | 1.1 |
更新时间 | 2015-10-09 |
上架时间 | 2015-10-08 |
评分 | 4.37/5 共35次评分 |
开发者 | Jimmy Fu |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Repeat", "short_name": "Repeat", "description": "Repeats a YouTube video", "version": "1.1", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "page_action": { "default_icon": "images\/icon.png", "default_title": "Repeat" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "all_frames": true, "js": [ "content_script.js" ], "matches": [ "*:\/\/youtube.com\/*", "*:\/\/*.youtube.com\/*" ], "run_at": "document_start" } ], "permissions": [ "tabs" ] } |