Notifications Preview for GitHub

Quickly see your notifications in a popup without leaving the current page

Qu'est-ce que Notifications Preview for GitHub ?

Notifications Preview for GitHub est une extension Chrome développée par Tanmay Rajani, et sa fonction principale est "Quickly see your notifications in a popup without leaving the current page".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Notifications Preview for GitHub

Téléchargez les fichiers d'extension Notifications Preview for GitHub 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

                        Things it offers:

* Allows to preview the unread notifications using pop-overs on hover looking exactly like the ones on the right (profile and new-repo)
* Shows the count of notifications on the bell icon
* Option to view only participating notifications
* Allows to perform actions like marking as read and unsubscribing on the notifications

More info/code at https://github.com/tanmayrajani/notifications-preview-github

Found issues? Please log into the repo provided above.

Cheers!

Credits:

- Icon made by https://www.flaticon.com/authors/google from https://www.flaticon.com is licensed by http://creativecommons.org/licenses/by/3.0/ (Creative Commons BY 3.0)                    

Informations de Base sur l'Extension

Nom Notifications Preview for GitHub Notifications Preview for GitHub
ID kgilejfahkjidpaclkepbdoeioeohfmj
URL Officiel https://chromewebstore.google.com/detail/notifications-preview-for/kgilejfahkjidpaclkepbdoeioeohfmj
Description Quickly see your notifications in a popup without leaving the current page
Taille du Fichier 30.9 KB
Nombre d'Installations 368
Version Actuelle 23.4.6
Dernière Mise à Jour 2023-04-06
Date de Publication 2020-05-22
Évaluation 5.00/5 Total 6 Évaluations
Développeur Tanmay Rajani
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/tanmayrajani/notifications-preview-github
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Notifications Preview for GitHub",
    "homepage_url": "https:\/\/github.com\/tanmayrajani\/notifications-preview-github",
    "version": "23.4.6",
    "manifest_version": 2,
    "minimum_chrome_version": "61",
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "55.0"
        }
    },
    "permissions": [
        "storage"
    ],
    "description": "Quickly see your notifications in a popup without leaving the current page",
    "icons": {
        "128": "\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "css": [
                "\/github-notifications-preview.css"
            ],
            "js": [
                "\/options-storage.js",
                "\/github-notifications-preview.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "\/options-storage.js"
        ]
    },
    "options_ui": {
        "chrome_style": true,
        "page": "\/options.html"
    }
}