Sloooop

A simple AB looper for Spotify

Sloooopคืออะไร?

Sloooop เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://sloooop.com และคุณลักษณะหลักของมันคือ "A simple AB looper for Spotify"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sloooop

ดาวน์โหลดไฟล์ส่วนขยาย Sloooop ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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\/*"
    ]
}