Notifications for YouTube

Stop missing notifications for your YouTube subscriptions and live events.

Τι είναι το Notifications for YouTube;

Το Notifications for YouTube είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://viewtrender.com, και η κύρια λειτουργία του είναι "Stop missing notifications for your YouTube subscriptions and live events.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Notifications for YouTube

Λήψη αρχείων επέκτασης Notifications for YouTube σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Receive notifications, via the extension icon, for your YouTube subscriptions and live events.

Remember when subscribing meant being notified? We do too.

Notifications for YouTube actively listens for new activity from all your subscriptions. A persistent, yet non-invasive, icon above the Chrome browsing window keeps track of the number of new notifications you have.

When opened, notifications are listed in chronological order, newest first. Soon you will have the option of seeing notifications grouped by your subscribed channels as well. 

☑︎ Stop missing YouTube notifications.
☑︎ Stop missing uploads or live events for YouTubers you subscribe to.
☑︎ Receive notifications in as close to real-time as possible.

Don’t think you're up to date, know you are!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Notifications for YouTube Notifications for YouTube
ID hckfdngdbkdhnbhehfefkcelfeofdjdo
Επίσημο URL https://chrome.google.com/webstore/detail/hckfdngdbkdhnbhehfefkcelfeofdjdo
Περιγραφή Stop missing notifications for your YouTube subscriptions and live events.
Μέγεθος Αρχείου 1.26 MB
Αριθμός Εγκαταστάσεων 1,196
Τρέχουσα Έκδοση 1.7.1
Τελευταία Ενημέρωση 2023-01-12
Ημερομηνία Δημοσίευσης 2020-04-03
Αξιολόγηση 4.03/5 Συνολικά 62 Αξιολογήσεις
Προγραμματιστής http://viewtrender.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://notifications.viewtrender.com/
Διεύθυνση URL της Σελίδας Βοήθειας https://notifications.viewtrender.com/
URL της Σελίδας Πολιτικής Απορρήτου https://notifications.viewtrender.com/privacy-policy
Υποστηριζόμενες Γλώσσες de,en,es,it,pt-BR,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Notifications for YouTube",
    "version": "1.7.1",
    "description": "Stop missing notifications for your YouTube subscriptions and live events.",
    "default_locale": "en",
    "action": {
        "default_icon": ".\/assets\/128.png",
        "default_popup": ".\/dist\/popup\/index.html"
    },
    "options_ui": {
        "page": ".\/dist\/options\/index.html",
        "open_in_tab": true
    },
    "background": {
        "service_worker": ".\/dist\/background\/index.mjs"
    },
    "icons": {
        "16": ".\/assets\/16.png",
        "48": ".\/assets\/48.png",
        "128": ".\/assets\/128.png"
    },
    "permissions": [
        "storage",
        "alarms"
    ],
    "host_permissions": [
        "https:\/\/*.youtube.com\/*",
        "https:\/\/*.viewtrender.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/feed\/*"
            ],
            "js": [
                ".\/dist\/contentScripts\/index.global.js"
            ],
            "css": [
                ".\/dist\/contentScripts\/style.css"
            ]
        },
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                ".\/dist\/contentScripts\/watch.global.js"
            ]
        },
        {
            "matches": [
                "https:\/\/notifications.viewtrender.com\/auth\/google\/callback*"
            ],
            "js": [
                ".\/dist\/contentScripts\/viewtrender.global.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/contentScripts\/style.css",
                "dist\/contentScripts\/subscriptions.global.js",
                "*.html",
                "*.css",
                "*.svg",
                "content\/*",
                "images\/*",
                "js\/*",
                "icons\/*"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    }
}