Autobell

Automatically enable notifications for the channels you follow on YouTube.

Autobellคืออะไร?

Autobell เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Automatically enable notifications for the channels you follow on YouTube."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Autobell

ดาวน์โหลดไฟล์ส่วนขยาย Autobell ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Autobell Autobell
ID mabbmjelmfndepjlmcggdplcemchbkep
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/autobell/mabbmjelmfndepjlmcggdplcemchbkep
คำอธิบาย Automatically enable notifications for the channels you follow on YouTube.
ขนาดไฟล์ 28.17 KB
จำนวนการติดตั้ง 41
เวอร์ชันปัจจุบัน 0.2.0
อัปเดตครั้งล่าสุด 2018-03-31
วันที่เผยแพร่ 2018-03-31
คะแนน 4.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
            ]
        }
    ]
}