YouTube Repeater
Repeats YouTube video after it ends.
什么是YouTube Repeater?
YouTube Repeater是由shogo开发的Chrome扩展程序,该扩展的主要功能是“Repeats YouTube video after it ends.”。
扩展截图
下载YouTube Repeater扩展crx文件
下载YouTube Repeater扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
You can make your YouTube video repeat automatically right from the page. - No external link - No need for playlists - Repeat infinitely with just 1 click ----- v.0.0.4 ----- Fixed the extension to work with the new YouTube design from fall 2018 ----- v.0.0.3 ----- Fixed the icon to show inactive when on non-youtube pages. ----- v.0.0.2 ----- Fixed icon to show the repeat status when tabs are switched.
扩展基本信息
名称 | ![]() |
ID | lgffcdbnficjmckoidgcmcajeadoekgi |
官方URL | https://chrome.google.com/webstore/detail/youtube-repeater/lgffcdbnficjmckoidgcmcajeadoekgi |
简介 | Repeats YouTube video after it ends. |
文件大小 | 16.98 KB |
安装次数 | 423 |
当前版本 | 0.0.4 |
更新时间 | 2019-03-18 |
上架时间 | 2019-03-18 |
评分 | 3.50/5 共4次评分 |
开发者 | shogo |
付费类型 | free |
扩展官网 | http://shogo.eu/ |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Repeater", "description": "Repeats YouTube video after it ends.", "version": "0.0.4", "manifest_version": 2, "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "browser_action": { "default_icon": "icon.png" }, "permissions": [ "tabs", "notifications", "webNavigation" ] } |