Setify, convert setlists to playlists

Export setlist.fm setlists as Spotify playlists! Works with setify.co to convert setlist.fm setlists to Spotify playlists.

Was ist Setify, convert setlists to playlists?

Setify, convert setlists to playlists ist eine Chrome-Erweiterung, die von https://setify.co entwickelt wurde, und ihr Hauptmerkmal ist "Export setlist.fm setlists as Spotify playlists! Works with setify.co to convert setlist.fm setlists to Spotify playlists.".

Erweiterungsscreenshots

screenshot
screenshot

Setify, convert setlists to playlists-Erweiterungs-CRX-Datei herunterladen

Laden Sie Setify, convert setlists to playlists-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Setify (setify.co) is an app that makes it easy for you to convert setlist.fm playlists into Spotify playlists. This extension provides a small window on each setlist page of setlist.fm allowing you to convert it with Setify.

One of the best features of Setify is that it will tell you which songs are (and aren't!) available on Spotify. It will also tell you which songs are covers not by the searched artist, so you can know exactly how your Spotify playlist is going to look before you save it.                    

Grundlegende Informationen zur Erweiterung

Name Setify, convert setlists to playlists Setify, convert setlists to playlists
ID fmmipjnkejcpjflkilakfabibfdeepfj
Offizielle URL https://chrome.google.com/webstore/detail/setify-convert-setlists-t/fmmipjnkejcpjflkilakfabibfdeepfj
Beschreibung Export setlist.fm setlists as Spotify playlists! Works with setify.co to convert setlist.fm setlists to Spotify playlists.
Dateigröße 67.15 KB
Installationsanzahl 1,000
Aktuelle Version 0.4
Letztes Update 2017-07-10
Veröffentlichungsdatum 2017-07-10
Bewertung 5.00/5 Insgesamt 6 Bewertungen
Entwickler https://setify.co
Zahlungsart free
Erweiterungswebsite https://setify.co/
Hilfeseite URL https://twitter.com/lawrhol
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Setify, convert setlists to playlists",
    "description": "Export setlist.fm setlists as Spotify playlists! Works with setify.co to convert setlist.fm setlists to Spotify playlists.",
    "version": "0.4",
    "icons": {
        "16": "[email protected]",
        "48": "[email protected]",
        "128": "[email protected]"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.setlist.fm\/setlist\/*\/*\/*.html"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.js",
                "contentscript.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "fonts\/open.woff2",
        "fonts\/fatface.woff2"
    ],
    "permissions": [
        "activeTab"
    ]
}