Skipify

Personal blacklist for Spotify

Hvad er Skipify?

Skipify er en Chrome-udvidelse udviklet af https://www.skipify.org, og dens hovedfunktion er "Personal blacklist for Spotify".

Udvidelsesskærmbilleder

screenshot

Download Skipify-udvidelses-CRX-fil

Download Skipify-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Define your own blacklist to block titles, artists, albums and anything else you don't want to listen on Spotify. Skipify blocks them automatically.

Blacklist are easy to use. Just insert parts of the artist or title you want to block. 

- "Just*er" matches "Justin Bieber" (without quotes)
- "justin*" matches anything includes "justin" (without quotes)

Be careful by using wildcards!

- a* blocks anything including "a"
- * blocks ANYTHING on Spotify (nice to make Spotify unusable)                    

Grundlæggende oplysninger om udvidelsen

Navn Skipify Skipify
ID eiimieigdjmikikailbhamfekeelenjj
Officiel URL https://chrome.google.com/webstore/detail/skipify/eiimieigdjmikikailbhamfekeelenjj
Beskrivelse Personal blacklist for Spotify
Filstørrelse 50.09 KB
Antal Installationer 191
Nuværende Version 1.0.7
Senest Opdateret 2017-09-20
Udgivelsesdato 2017-09-20
Bedømmelse 3.50/5 Samlet 2 Bedømmelser
Udvikler https://www.skipify.org
Betalingsmetode free
Udvidelseswebsted https://www.skipify.org
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Skipify",
    "description": "Personal blacklist for Spotify",
    "version": "1.0.7",
    "manifest_version": 2,
    "icons": {
        "128": "icon.png",
        "48": "icon_48.png",
        "32": "icon_32.png"
    },
    "browser_action": {
        "default_title": "Skipify",
        "default_icon": "icon.png"
    },
    "incognito": "split",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "https:\/\/open.spotify.com\/*",
        "tabs",
        "storage"
    ],
    "options_ui": {
        "page": "blacklist.html",
        "chrome_style": true
    }
}