Autobell

Automatically enable notifications for the channels you follow on YouTube.

Qu'est-ce que Autobell ?

Autobell est une extension Chrome développée par Unknown, et sa fonction principale est "Automatically enable notifications for the channels you follow on YouTube.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Autobell

Téléchargez les fichiers d'extension Autobell au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Autobell Autobell
ID mabbmjelmfndepjlmcggdplcemchbkep
URL Officiel https://chromewebstore.google.com/detail/autobell/mabbmjelmfndepjlmcggdplcemchbkep
Description Automatically enable notifications for the channels you follow on YouTube.
Taille du Fichier 28.17 KB
Nombre d'Installations 41
Version Actuelle 0.2.0
Dernière Mise à Jour 2018-03-31
Date de Publication 2018-03-31
Évaluation 4.00/5 Total 3 Évaluations
Développeur Unknown
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}