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 με φίλους για εύκολη εγκατάσταση των επεκτάσεων 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" ] } ] } |