Spotifree

Removes audio ads on Spot1fy Web Player

Spotifree क्या है?

Spotifree robertward2933 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Removes audio ads on Spot1fy Web Player"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Spotifree एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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\/*"
    ]
}