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 |
| 官方網址 | 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"
]
} | |