Spotless

Effortless Spotify

Spotlessคืออะไร?

Spotless เป็นส่วนขยายของ Chrome ที่พัฒนาโดย phandd และคุณลักษณะหลักของมันคือ "Effortless Spotify"

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

screenshot

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

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

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

                        Too annoyed by Spotify Ads? Too lazy to navigate to Spotify when you want to change your music? Spotless is here to help you use Spotify effortless!

What makes Spotless different from other Spotify players out there is you can control your Spotify player no matter what device you are using, what tab you are currently on.

Try it out and you will love it!

For source code and issue reporting: https://github.com/phandd/spotless                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Spotless Spotless
ID allccgoelledmdfenijoodhcfjndddjh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/spotless/allccgoelledmdfenijoodhcfjndddjh
คำอธิบาย Effortless Spotify
ขนาดไฟล์ 421 KB
จำนวนการติดตั้ง 8,911
เวอร์ชันปัจจุบัน 1.3.1
อัปเดตครั้งล่าสุด 2020-03-16
วันที่เผยแพร่ 2020-03-15
คะแนน 4.54/5 รวมทั้งหมด 50 คะแนน
ผู้พัฒนา phandd
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/phandd/spotless
URL หน้าช่วยเหลือ https://github.com/phandd/spotless
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Spotless",
    "description": "Effortless Spotify",
    "version": "1.3.1",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Spotless",
        "default_popup": "popup.html"
    },
    "permissions": [
        "https:\/\/open.spotify.com\/",
        "https:\/\/spotify.com\/"
    ],
    "icons": {
        "128": "icon-128.png",
        "16": "icon-16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "content-script.js"
            ]
        }
    ]
}