Spotify Song Repeat
Spotify repeat song in loop.
什麼是Spotify Song Repeat?
Spotify Song Repeat是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Spotify repeat song in loop.”。
擴展截圖
下載Spotify Song Repeat擴展crx文件
下載Spotify Song Repeat擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension allow you to enable to play one song in repeat on Spotify. 擴展基本資訊
| 名稱 | |
| ID | cppllpjljepgfjocipdjgioinfhbbhap |
| 官方網址 | https://chromewebstore.google.com/detail/spotify-song-repeat/cppllpjljepgfjocipdjgioinfhbbhap |
| 簡介 | Spotify repeat song in loop. |
| 檔案大小 | 1.12 MB |
| 安裝次數 | 255 |
| 目前版本 | 1.1 |
| 更新時間 | 2017-06-10 |
| 上架時間 | 2017-06-10 |
| 評分 | 4.11/5 共 18 次評分 |
| 開發者 | Unknown |
| 付費類型 | free |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Spotify Song Repeat",
"manifest_version": 2,
"version": "1.1",
"description": "Spotify repeat song in loop.",
"permissions": [
"http:\/\/open.spotify.com\/*",
"https:\/\/open.spotify.com\/*"
],
"content_scripts": [
{
"matches": [
"http:\/\/open.spotify.com\/*",
"https:\/\/open.spotify.com\/*"
],
"js": [
"main.js"
],
"run_at": "document_idle"
}
],
"icons": {
"32": "icon.png"
},
"browser_action": {
"default_icon": "icon.png"
}
} | |