Spotilize

A companion Chrome Extension to the Spotilize web app.

Spotilize là gì?

Spotilize là một tiện ích mở rộng Chrome được phát triển bởi https://christophergomez.dev, và tính năng chính của nó là "A companion Chrome Extension to the Spotilize web app.".

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

screenshot
screenshot

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

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

                        This extension activates the Spotilize web app, an app built for visualizing your Spotify library. With beautiful visuals and full screen support, run this extension on a large monitor or computer hooked up to a television to really set the mood. Dance along or just listen and stare, Spotilize is here to enhance your Spotify experience.                    

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

Tên Spotilize Spotilize
ID jidcihllhnmbjbnoijfepopdpkpgeobe
URL Chính Thức https://chromewebstore.google.com/detail/spotilize/jidcihllhnmbjbnoijfepopdpkpgeobe
Mô tả A companion Chrome Extension to the Spotilize web app.
Kích Thước Tệp 24.78 KB
Số Lần Cài Đặt 23
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2023-04-01
Ngày Phát Hành 2019-01-25
Đánh Giá 3.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://christophergomez.dev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://spotilize.uc.r.appspot.com/
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotilize",
    "version": "1.1.0",
    "description": "A companion Chrome Extension to the Spotilize web app.",
    "permissions": [
        "activeTab",
        "tabCapture",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost:8080\/*",
                "https:\/\/spotilize.uc.r.appspot.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "24": "images\/icon24.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "64": "images\/icon64.png",
            "128": "images\/icon128.png"
        },
        "default_title": "Spotilize",
        "default_popup": ""
    },
    "externally_connectable": {
        "matches": [
            "http:\/\/localhost:8080\/*",
            "https:\/\/spotilize.uc.r.appspot.com\/*"
        ]
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "minimum_chrome_version": "71",
    "manifest_version": 2
}