Spotifree

Removes audio ads on Spot1fy Web Player

Τι είναι το Spotifree;

Το Spotifree είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον robertward2933, και η κύρια λειτουργία του είναι "Removes audio ads on Spot1fy Web Player".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Spotifree

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

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

                        Via spotifree, you can have a completely ad-free version of spotify. It is completely open source and free.

Features:
-No need to pay for a premium account as ads are skipped without you taking action
-You will not feel anything while listening to your music, the music will not be interrupted.
-The time you spend listening to ads is up to you.
-You save internet traffic because you don't listen to ads.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Spotifree Spotifree
ID lghglbigngooahpkaomlbiflhoahgnff
Επίσημο URL https://chrome.google.com/webstore/detail/spotifree/lghglbigngooahpkaomlbiflhoahgnff
Περιγραφή Removes audio ads on Spot1fy Web Player
Μέγεθος Αρχείου 49.97 KB
Αριθμός Εγκαταστάσεων 544
Τρέχουσα Έκδοση 1.0.1
Τελευταία Ενημέρωση 2021-06-07
Ημερομηνία Δημοσίευσης 2021-06-07
Αξιολόγηση 5.00/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής robertward2933
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Spotifree",
    "short_name": "Spotifree ads blocker",
    "description": "Removes audio ads on Spot1fy Web Player",
    "version": "1.0.1",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "*:\/\/open.spotify.com\/*"
    ],
    "icons": {
        "128": "images\/icon_128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon_128.png",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "lib\/sweetalert.min.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "injected\/*",
        "lib\/*"
    ]
}