Autobell

Automatically enable notifications for the channels you follow on YouTube.

Autobell क्या है?

Autobell Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically enable notifications for the channels you follow on YouTube."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Autobell एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
            ]
        }
    ]
}