Notifications Preview for GitHub

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

O que é Notifications Preview for GitHub?

Notifications Preview for GitHub é uma extensão do Chrome desenvolvida por Tanmay Rajani, e sua principal característica é "Quickly see your notifications in a popup without leaving the current page".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Notifications Preview for GitHub

Baixe arquivos de extensão Notifications Preview for GitHub no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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)                    

Informações Básicas da Extensão

Nome Notifications Preview for GitHub Notifications Preview for GitHub
ID kgilejfahkjidpaclkepbdoeioeohfmj
URL Oficial https://chromewebstore.google.com/detail/notifications-preview-for/kgilejfahkjidpaclkepbdoeioeohfmj
Descrição Quickly see your notifications in a popup without leaving the current page
Tamanho do Arquivo 30.9 KB
Contagem de Instalações 368
Versão Atual 23.4.6
Última Atualização 2023-04-06
Data de Publicação 2020-05-22
Classificação 5.00/5 Total de 6 Avaliações
Desenvolvedor Tanmay Rajani
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/tanmayrajani/notifications-preview-github
Idiomas Suportados 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"
    }
}