Spotifree
Removes audio ads on Spot1fy Web Player
Spotifreeคืออะไร?
Spotifree เป็นส่วนขยายของ Chrome ที่พัฒนาโดย robertward2933 และคุณลักษณะหลักของมันคือ "Removes audio ads on Spot1fy Web Player"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Spotifree
ดาวน์โหลดไฟล์ส่วนขยาย Spotifree ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Via spotifree, you can have a completely ad-free version of spotify. It is completely open source and free. Features: -No need to pay for a premium account as ads are skipped without you taking action -You will not feel anything while listening to your music, the music will not be interrupted. -The time you spend listening to ads is up to you. -You save internet traffic because you don't listen to ads.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | lghglbigngooahpkaomlbiflhoahgnff |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/spotifree/lghglbigngooahpkaomlbiflhoahgnff |
คำอธิบาย | Removes audio ads on Spot1fy Web Player |
ขนาดไฟล์ | 49.97 KB |
จำนวนการติดตั้ง | 544 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2021-06-07 |
วันที่เผยแพร่ | 2021-06-07 |
คะแนน | 5.00/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | robertward2933 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Spotifree", "short_name": "Spotifree ads blocker", "description": "Removes audio ads on Spot1fy Web Player", "version": "1.0.1", "permissions": [ "webRequest", "webRequestBlocking", "*:\/\/open.spotify.com\/*" ], "icons": { "128": "images\/icon_128.png" }, "browser_action": { "default_icon": "images\/icon_128.png", "default_popup": "popup\/popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "content_script.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "lib\/sweetalert.min.js" ], "css": [ "styles.css" ] } ], "web_accessible_resources": [ "injected\/*", "lib\/*" ] } |