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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Autobell
قم بتنزيل ملفات الامتداد Autobell بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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" ] } ] } |