Spotilize

A companion Chrome Extension to the Spotilize web app.

Spotilize क्या है?

Spotilize https://christophergomez.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A companion Chrome Extension to the Spotilize web app."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Spotilize एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Spotilize Spotilize
ID jidcihllhnmbjbnoijfepopdpkpgeobe
आधिकारिक URL https://chromewebstore.google.com/detail/spotilize/jidcihllhnmbjbnoijfepopdpkpgeobe
विवरण A companion Chrome Extension to the Spotilize web app.
फ़ाइल का आकार 24.78 KB
स्थापना संख्या 23
वर्तमान संस्करण 1.1.0
अंतिम अपडेट 2023-04-01
प्रकाशन तिथि 2019-01-25
रेटिंग 3.00/5 कुल 1 रेटिंग्स
डेवलपर https://christophergomez.dev
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://spotilize.uc.r.appspot.com/
समर्थित भाषाएँ 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
}