Sloooop

A simple AB looper for Spotify

Sloooop란 무엇입니까?

Sloooop은(는) https://sloooop.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple AB looper for Spotify"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Sloooop 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Simplest AB looper for Spotify
Are you a musician who wants to practice parts of songs on Spotify?
Are you a music listener who wants to repeatedly listen to a favourite part of a song on Spotify?
Are you a DJ who wants to play background music from a part of a song on Spotify?
Then Slooop is for you!

Simple operation: Login to your Spotify account -> Enable Sloooop -> Allow Slooop -> Set the slider ranges to the desired part of your song -> Click Sloooop extension button again to toggle looping on and off.

Known Limitations
- This only works for Premium Spotify users. The seek API is unfortunately only allowed for Spotify Premium.
- This extension is only supported on Chrome. It has been tested on Windows and OSX desktops. It has not been tested on *nix platforms.
- The extension client authorization only lasts 1hour. After every hour, the user will need to allow the extension access to its Spotify account again. This is a current limitation with Spotify's front-end client authorization flow.
- The maximum number of tracks with loop ranges have not been tested. The fixed chrome extension storage limits are 5MB.

Support
Post your bug reports and ideas to https://github.com/abdulazizali77/sloooop/issues

Change Log
0.0.1 - Initial Release
0.0.2 - Fixed changed component references                    

확장 프로그램 기본 정보

이름 Sloooop Sloooop
ID ohncbpgmipkaabdgojlikdkinldepdkm
공식 URL https://chromewebstore.google.com/detail/sloooop/ohncbpgmipkaabdgojlikdkinldepdkm
설명 A simple AB looper for Spotify
파일 크기 2.57 MB
설치 횟수 298
현재 버전 0.0.2
최근 업데이트 2022-04-14
출시 날짜 2020-10-28
평점 4.00/5 총 2 개의 평점
개발자 https://sloooop.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://sloooop.com
도움말 페이지 URL https://github.com/abdulazizali77/sloooop/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sloooop",
    "short_name": "Sloooop",
    "description": "A simple AB looper for Spotify",
    "version": "0.0.2",
    "manifest_version": 2,
    "author": "[email protected]",
    "homepage_url": "https:\/\/sloooop.com",
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "declarativeContent"
    ],
    "icons": {
        "16": "images\/16_activate.png",
        "32": "images\/32_activate.png",
        "48": "images\/48_activate.png",
        "128": "images\/128_activate.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "background.bundle.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/open.spotify.com\/*"
            ],
            "js": [
                "contentscript.bundle.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "images\/32_0_unavailable.png"
    },
    "web_accessible_resources": [
        "\/html\/*",
        "\/css\/*",
        "\/images\/*",
        "\/fonts\/*"
    ]
}