Red Subscribe Button Fixer

The new YouTube subscribe button is bright flaming red. How annoying, right? This extension fixes that.

Red Subscribe Button Fixer là gì?

Red Subscribe Button Fixer là một tiện ích mở rộng Chrome được phát triển bởi Tony Webster, và tính năng chính của nó là "The new YouTube subscribe button is bright flaming red. How annoying, right? This extension fixes that.".

Ả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 Red Subscribe Button Fixer

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

                        YouTube recently replaced the 'Subscribe' button on video pages with an obnoxious bright red button. That's annoying. This extension's sole purpose is to swap it out with a less-annoying light grey version.

This extension only adds limited CSS properties to target the subscribe button. It does not access your YouTube data or data on other sites, and no data is transmitted to third parties.

Open source: https://github.com/webster/youtube-red-subscribe-button                    

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

Tên Red Subscribe Button Fixer Red Subscribe Button Fixer
ID imfcjgelinkpbhdppbbpeejbaiblbeeo
URL Chính Thức https://chrome.google.com/webstore/detail/red-subscribe-button-fixe/imfcjgelinkpbhdppbbpeejbaiblbeeo
Mô tả The new YouTube subscribe button is bright flaming red. How annoying, right? This extension fixes that.
Kích Thước Tệp 215 KB
Số Lần Cài Đặt 96
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2013-07-09
Ngày Phát Hành 2013-07-09
Đánh Giá 4.22/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Tony Webster
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": "Red Subscribe Button Fixer",
    "description": "The new YouTube subscribe button is bright flaming red. How annoying, right? This extension fixes that.",
    "version": "1.2",
    "permissions": [
        "https:\/\/www.youtube.com\/",
        "http:\/\/www.youtube.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "http:\/\/www.youtube.com\/*"
            ],
            "css": [
                "noredbutton.css"
            ]
        }
    ]
}