Numberfy (Numbers in Spotify)

Adds numbers to songs in spotify playlists and albums.

Numberfy (Numbers in Spotify) क्या है?

Numberfy (Numbers in Spotify) LinusK द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds numbers to songs in spotify playlists and albums."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        DISCLAIMER: This extension is NOT an offical extension from Spotify.

This extension adds numbers to the songs in your spotify playlists, songs (collection) and albums.

Configurable using the icon in your browser (see 4th screenshot).

If the extension stops working, let me know (email below).

This extension is Open Source and can be found here: https://github.com/LinusCDE/Numberfy                    

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

नाम Numberfy (Numbers in Spotify) Numberfy (Numbers in Spotify)
ID mlhcbpdinhgnjoenjaiimhjmckbiegig
आधिकारिक URL https://chrome.google.com/webstore/detail/numberfy-numbers-in-spoti/mlhcbpdinhgnjoenjaiimhjmckbiegig
विवरण Adds numbers to songs in spotify playlists and albums.
फ़ाइल का आकार 62.92 KB
स्थापना संख्या 59
वर्तमान संस्करण 1.46
अंतिम अपडेट 2018-09-15
प्रकाशन तिथि 2018-09-15
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर LinusK
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Numberfy (Numbers in Spotify)",
    "version": "1.46",
    "description": "Adds numbers to songs in spotify playlists and albums.",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "64": "icons\/icon_64.png",
        "128": "icons\/icon_128.png",
        "512": "icons\/icon_512.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "all_frames": false,
            "js": [
                "scripts\/spotify_numerizer.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "extension_popup\/page.html"
    }
}