Spotifree

Removes audio ads on Spot1fy Web Player

Spotifree là gì?

Spotifree là một tiện ích mở rộng Chrome được phát triển bởi robertward2933, và tính năng chính của nó là "Removes audio ads on Spot1fy Web Player".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Spotifree

Tải xuống các tệp mở rộng Spotifree dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Spotifree Spotifree
ID lghglbigngooahpkaomlbiflhoahgnff
URL Chính Thức https://chrome.google.com/webstore/detail/spotifree/lghglbigngooahpkaomlbiflhoahgnff
Mô tả Removes audio ads on Spot1fy Web Player
Kích Thước Tệp 49.97 KB
Số Lần Cài Đặt 544
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2021-06-07
Ngày Phát Hành 2021-06-07
Đánh Giá 5.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển robertward2933
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}