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 |
公式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" ] } ] } |