Autobell
Automatically enable notifications for the channels you follow on YouTube.
什麼是Autobell?
Autobell是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Automatically enable notifications for the channels you follow on YouTube.”。
擴展截圖
下載Autobell擴展crx文件
下載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 |
ID | mabbmjelmfndepjlmcggdplcemchbkep |
官方網址 | 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" ] } ] } |