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 擴展基本資訊
| 名稱 | |
| ID | ignbdlcbpccodmdokjdkjfoebimbkpfc |
| 官方網址 | 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"
]
}
]
} | |