What's New on GitHub

See what's new and what's not in your GitHub dashboard's feeds and in your organizations' feeds.

Cos'è What's New on GitHub?

What's New on GitHub è un'estensione di Chrome sviluppata da Mickaël Allonneau, e la sua funzione principale è "See what's new and what's not in your GitHub dashboard's feeds and in your organizations' feeds.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione What's New on GitHub

Scarica i file di estensione What's New on GitHub in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension helps you see easily what happened on GitHub since your last visit.
See the screenshot to see it in action!

⭐ Don't forget to leave a rating if you find this extension useful!

(Also available on Firefox : https://addons.mozilla.org/en-US/firefox/addon/whats-new-github/)                    

Informazioni di Base sull'Estensione

Nome What's New on GitHub What's New on GitHub
ID ldleapnlgbkpkabhbkkeangmnfpikahe
URL Ufficiale https://chromewebstore.google.com/detail/whats-new-on-github/ldleapnlgbkpkabhbkkeangmnfpikahe
Descrizione See what's new and what's not in your GitHub dashboard's feeds and in your organizations' feeds.
Dimensione del File 9.8 KB
Conteggio Installazioni 175
Versione Corrente 3.0.1
Ultimo Aggiornamento 2023-02-28
Data di Pubblicazione 2020-05-18
Sviluppatore Mickaël Allonneau
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/flawyte/whats-new-github
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "What's New on GitHub",
    "version": "3.0.1",
    "description": "See what's new and what's not in your GitHub dashboard's feeds and in your organizations' feeds.",
    "icons": {
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/",
                "https:\/\/github.com\/dashboard",
                "https:\/\/github.com\/orgs\/*\/dashboard"
            ],
            "js": [
                "index.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ]
}