Real Listen On Repeat
Repeat youtube videos
什么是Real Listen On Repeat?
Real Listen On Repeat是由https://miltonlaufer.com.ar开发的Chrome扩展程序,该扩展的主要功能是“Repeat youtube videos”。
扩展截图
下载Real Listen On Repeat扩展crx文件
下载Real Listen On Repeat扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A simple button to listen Youtube videos on repeat
扩展基本信息
名称 | Real Listen On Repeat |
ID | ignbdlcbpccodmdokjdkjfoebimbkpfc |
官方URL | https://chromewebstore.google.com/detail/real-listen-on-repeat/ignbdlcbpccodmdokjdkjfoebimbkpfc |
简介 | Repeat youtube videos |
文件大小 | 8.98 KB |
安装次数 | 89 |
当前版本 | 0.0.5.1 |
更新时间 | 2017-12-08 |
上架时间 | 2017-12-07 |
评分 | 5.00/5 共1次评分 |
开发者 | https://miltonlaufer.com.ar |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Real Listen On Repeat", "short_name": "RealListenOnRepeat", "description": "Repeat youtube videos", "version": "0.0.5.1", "manifest_version": 2, "author": "@onwhatthereis", "permissions": [ "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "name": "Click to set on\/off the Youtube Repeat mode" }, "icons": { "16": "icon16.png", "32": "icon32.png", "64": "icon64.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "run_at": "document_start", "js": [ "myscript.js" ] } ] } |