Auto open in the Spotify app

Automatically sends all Spotify URLs to the dedicated Spotify app

Auto open in the Spotify app क्या है?

Auto open in the Spotify app Ben Cheshire द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically sends all Spotify URLs to the dedicated Spotify app"।

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

screenshot

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

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

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

                        This extension will automatically send all Spotify URLs to the dedicated Spotify app. Make sure you've installed the official app or it won't work!

No persistent background processes will run while this extension is active :)                    

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

नाम Auto open in the Spotify app Auto open in the Spotify app
ID pkghcmlaendnidgjofmeeaalkiphalkg
आधिकारिक URL https://chromewebstore.google.com/detail/auto-open-in-the-spotify/pkghcmlaendnidgjofmeeaalkiphalkg
विवरण Automatically sends all Spotify URLs to the dedicated Spotify app
फ़ाइल का आकार 41.94 KB
स्थापना संख्या 339
वर्तमान संस्करण 1.2.1
अंतिम अपडेट 2020-12-08
प्रकाशन तिथि 2020-05-23
रेटिंग 5.00/5 कुल 5 रेटिंग्स
डेवलपर Ben Cheshire
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto open in the Spotify app",
    "author": "Ben Cheshire",
    "short_name": "AoS",
    "version": "1.2.1",
    "manifest_version": 2,
    "description": "Automatically sends all Spotify URLs to the dedicated Spotify app",
    "browser_action": {
        "default_icon": {
            "19": "img\/icon19.png",
            "38": "img\/icon38.png"
        }
    },
    "icons": {
        "16": "img\/icon16.png",
        "19": "img\/icon19.png",
        "38": "img\/icon38.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png",
        "256": "img\/icon256.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "1.js"
        ]
    },
    "options_page": "bFramework\/options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/open.spotify.com\/*",
                "*:\/\/play.spotify.com\/*"
            ],
            "js": [
                "2.js"
            ],
            "run_at": "document_start"
        }
    ],
    "version_name": "1.2.1",
    "minimum_chrome_version": "80"
}