Numberfy (Numbers in Spotify)

Adds numbers to songs in spotify playlists and albums.

Τι είναι το Numberfy (Numbers in Spotify);

Το Numberfy (Numbers in Spotify) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον LinusK, και η κύρια λειτουργία του είναι "Adds numbers to songs in spotify playlists and albums.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Numberfy (Numbers in Spotify)

Λήψη αρχείων επέκτασης Numberfy (Numbers in Spotify) σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
    }
}