Spotimute

This extension mutes the spotify & gaana audio when ad comes.

Spotimute là gì?

Spotimute là một tiện ích mở rộng Chrome được phát triển bởi piedcipher.dev, và tính năng chính của nó là "This extension mutes the spotify & gaana audio when ad comes.".

Ả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 Spotimute

Tải xuống các tệp mở rộng Spotimute 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

                        This extension auto-mutes the Spotify and Gaana audio when an advertisement comes. Also, it auto-unmutes the audio when the ad is finished.                    

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

Tên Spotimute Spotimute
ID mlkdhplkfffpgfkioemkjagaccinclgc
URL Chính Thức https://chromewebstore.google.com/detail/spotimute/mlkdhplkfffpgfkioemkjagaccinclgc
Mô tả This extension mutes the spotify & gaana audio when ad comes.
Kích Thước Tệp 19.98 KB
Số Lần Cài Đặt 91
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2022-07-27
Ngày Phát Hành 2022-07-21
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển piedcipher.dev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://twitter.com/piedcipher
URL Trang Trợ Giúp https://github.com/piedcipher/spotimute/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotimute",
    "version": "0.0.2",
    "description": "This extension mutes the spotify & gaana audio when ad comes.",
    "manifest_version": 3,
    "author": "Tirth Patel",
    "action": {
        "default_popup": "index.html",
        "default_title": "Spotimute"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "spotify.js"
            ]
        },
        {
            "matches": [
                "https:\/\/gaana.com\/*"
            ],
            "js": [
                "gaana.js"
            ]
        }
    ],
    "icons": {
        "16": ".\/assets\/_16.png",
        "48": ".\/assets\/_48.png",
        "128": ".\/assets\/_128.png"
    }
}