Youtube Repeat
Save your preference once and it will repeat the video for your favourite songs
什么是Youtube Repeat?
Youtube Repeat是由mercury200Hg开发的Chrome扩展程序,该扩展的主要功能是“Save your preference once and it will repeat the video for your favourite songs”。
扩展截图
下载Youtube Repeat扩展crx文件
下载Youtube Repeat扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Single repeat choice for all YouTube links. - Just save your preference once and then enjoy repeated playback of your favorite songs and videos on YouTube without reloading your webpage or requirement to consume additional Internet usage. Icons used are made by Freepick from www.flaticons.com
扩展基本信息
名称 | Youtube Repeat |
ID | mbimaenpniemflhmhbahldkfppflbcjh |
官方URL | https://chromewebstore.google.com/detail/youtube-repeat/mbimaenpniemflhmhbahldkfppflbcjh |
简介 | Save your preference once and it will repeat the video for your favourite songs |
文件大小 | 8.63 KB |
安装次数 | 361 |
当前版本 | 1.0.0 |
更新时间 | 2017-03-12 |
上架时间 | 2017-03-12 |
评分 | 4.33/5 共6次评分 |
开发者 | mercury200Hg |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Repeat", "browser_action": { "default_icon": "loop-arrow-32.png", "default_popup": "popup.html", "default_title": "Click repeat" }, "description": "Save your preference once and it will repeat the video for your favourite songs", "icons": { "128": "loop-arrow-128.png", "32": "loop-arrow-32.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "all_frames": true, "js": [ "content.js" ], "matches": [ "*:\/\/*.youtube.com\/*" ], "run_at": "document_end" } ], "permissions": [ "activeTab", "tabs", "webNavigation", "*:\/\/*.youtube.com\/*", "storage" ], "version": "1.0.0" } |