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 |
| 官方URL | 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"
}
} | |