loop
looks for videos and allows you to make loops
什么是loop?
loop是由Evaw开发的Chrome扩展程序,该扩展的主要功能是“looks for videos and allows you to make loops”。
扩展截图
下载loop扩展crx文件
下载loop扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
An Extension to loop video.
Use cases:
* replay a youtube song automatically.
* replay a segment of a video you're watching over an over for analysis 扩展基本信息
| 名称 | |
| ID | mpjplegmigckokmkmnbbfgjpepocpngj |
| 官方URL | https://chromewebstore.google.com/detail/loop/mpjplegmigckokmkmnbbfgjpepocpngj |
| 简介 | looks for videos and allows you to make loops |
| 文件大小 | 7.38 MB |
| 安装次数 | 905 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2017-12-01 |
| 上架时间 | 2017-11-30 |
| 评分 | 4.00/5 共4次评分 |
| 开发者 | Evaw |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "loop",
"version": "1.0.0",
"icons": {
"48": "img\/icons\/icon48.png",
"128": "img\/icons\/icon128.png",
"300": "img\/icons\/icon300.png"
},
"description": "looks for videos and allows you to make loops",
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"js\/content-script.js"
],
"all_frames": true
}
],
"background": {
"scripts": [
"js\/popup.js"
]
},
"options_ui": {
"page": "html\/options.html",
"chrome_style": true
},
"browser_action": {
"default_icon": "img\/icons\/icon128.png",
"__default_popup": "html\/popup.html"
},
"permissions": [
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*",
"storage"
]
} | |