Spotify Web Visualizer

Full screen visualizer for Spotify Web

Spotify Web Visualizer là gì?

Spotify Web Visualizer là một tiện ích mở rộng Chrome được phát triển bởi http://nikodraca.com, và tính năng chính của nó là "Full screen visualizer for Spotify Web".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Spotify Web Visualizer

Tải xuống các tệp mở rộng Spotify Web Visualizer 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

                        Allows you to enter a full screen visualizer while listening to Spotify on the web. 

Perfect for displaying artwork while listening to music on the web.

Change Log:

v0.2.1 (2020/04/01)
- Fixed MutationObserver bug
- Implemented pre-loading for images
- Fixed audio control                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Spotify Web Visualizer Spotify Web Visualizer
ID cioamabllelecbeliakinadcmlilkigp
URL Chính Thức https://chrome.google.com/webstore/detail/spotify-web-visualizer/cioamabllelecbeliakinadcmlilkigp
Mô tả Full screen visualizer for Spotify Web
Kích Thước Tệp 120 KB
Số Lần Cài Đặt 3,000
Phiên Bản Hiện Tại 0.2.1
Cập Nhật Lần Cuối 2020-05-22
Ngày Phát Hành 2020-05-22
Đánh Giá 2.28/5 Tổng số 18 Đánh Giá
Nhà Phát Triển http://nikodraca.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.nikodraca.com
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotify Web Visualizer",
    "version": "0.2.1",
    "manifest_version": 2,
    "description": "Full screen visualizer for Spotify Web",
    "homepage_url": "http:\/\/www.nikodraca.com\/",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "https:\/\/open.spotify.com\/*",
        "debugger"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js",
                "js\/jquery\/jquery.min.js"
            ]
        }
    ]
}