Autobell

Automatically enable notifications for the channels you follow on YouTube.

Autobell là gì?

Autobell là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Automatically enable notifications for the channels you follow on YouTube.".

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

screenshot
screenshot

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

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

                        Automatically enable notifications for the channels you follow on YouTube.

1. Are you tired off not being informed when your favorite Youtuber uploads a video.

2. Do you hate the feature Youtube added with the notification bell that you forget to check when you subscribe to a new Youtuber you like?

Then look no further!

Autobell is for you who always want the bell to be click when 
you subscribe to someone.                    

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

Tên Autobell Autobell
ID mabbmjelmfndepjlmcggdplcemchbkep
URL Chính Thức https://chromewebstore.google.com/detail/autobell/mabbmjelmfndepjlmcggdplcemchbkep
Mô tả Automatically enable notifications for the channels you follow on YouTube.
Kích Thước Tệp 28.17 KB
Số Lần Cài Đặt 41
Phiên Bản Hiện Tại 0.2.0
Cập Nhật Lần Cuối 2018-03-31
Ngày Phát Hành 2018-03-31
Đánh Giá 4.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Autobell",
    "short_name": "Autobell",
    "version": "0.2.0",
    "description": "Automatically enable notifications for the channels you follow on YouTube.",
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon-16.png",
            "32": "icons\/icon-32.png",
            "64": "icons\/icon-64.png",
            "128": "icons\/icon-128.png"
        }
    },
    "permissions": [
        "activeTab",
        "webRequest",
        "*:\/\/*.youtube.com\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ]
}