Spotless
Effortless Spotify
Spotless là gì?
Spotless là một tiện ích mở rộng Chrome được phát triển bởi phandd, và tính năng chính của nó là "Effortless Spotify".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Spotless
Tải xuống các tệp mở rộng Spotless dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Spotless |
ID | allccgoelledmdfenijoodhcfjndddjh |
URL Chính Thức | https://chromewebstore.google.com/detail/spotless/allccgoelledmdfenijoodhcfjndddjh |
Mô tả | Effortless Spotify |
Kích Thước Tệp | 421 KB |
Số Lần Cài Đặt | 8,911 |
Phiên Bản Hiện Tại | 1.3.1 |
Cập Nhật Lần Cuối | 2020-03-16 |
Ngày Phát Hành | 2020-03-15 |
Đánh Giá | 4.54/5 Tổng số 50 Đánh Giá |
Nhà Phát Triển | phandd |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/phandd/spotless |
URL Trang Trợ Giúp | https://github.com/phandd/spotless |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |