Numberfy (Numbers in Spotify)

Adds numbers to songs in spotify playlists and albums.

Co je Numberfy (Numbers in Spotify)?

Numberfy (Numbers in Spotify) je rozšíření Chrome vyvinuté LinusK, a jeho hlavní funkcí je „Adds numbers to songs in spotify playlists and albums.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Numberfy (Numbers in Spotify)

Stáhněte si soubory rozšíření Numberfy (Numbers in Spotify) ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Numberfy (Numbers in Spotify) Numberfy (Numbers in Spotify)
ID mlhcbpdinhgnjoenjaiimhjmckbiegig
Oficiální URL https://chrome.google.com/webstore/detail/numberfy-numbers-in-spoti/mlhcbpdinhgnjoenjaiimhjmckbiegig
Popis Adds numbers to songs in spotify playlists and albums.
Velikost souboru 62.92 KB
Počet instalací 59
Aktuální Verze 1.46
Poslední Aktualizace 2018-09-15
Datum Vydání 2018-09-15
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář LinusK
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    }
}