Extra GitHub PR Info

Edits to the GitHub UI to make it more informative

Cos'è Extra GitHub PR Info?

Extra GitHub PR Info è un'estensione di Chrome sviluppata da Meta, e la sua funzione principale è "Edits to the GitHub UI to make it more informative".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Extra GitHub PR Info

Scarica i file di estensione Extra GitHub PR Info 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

                        A collection of GitHub quality of life improvements:

See https://github.com/driazati/github-extension for details                    

Informazioni di Base sull'Estensione

Nome Extra GitHub PR Info Extra GitHub PR Info
ID pianlbphbcjkcghlboepagpoilanigff
URL Ufficiale https://chromewebstore.google.com/detail/extra-github-pr-info/pianlbphbcjkcghlboepagpoilanigff
Descrizione Edits to the GitHub UI to make it more informative
Dimensione del File 38.37 KB
Conteggio Installazioni 231
Versione Corrente 1.8.3
Ultimo Aggiornamento 2021-09-30
Data di Pubblicazione 2020-03-11
Sviluppatore Meta
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/driazati/github-extension
URL della Pagina di Aiuto https://github.com/driazati/github-extension
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Extra GitHub PR Info",
    "short_name": "Extra GitHub PR Info",
    "description": "Edits to the GitHub UI to make it more informative",
    "version": "1.8.3",
    "author": "pytorch",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/pulls*",
                "*:\/\/github.com\/pulls*"
            ],
            "js": [
                "lib.js",
                "show_build_status.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "js": [
                "disable_pjax.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/github.com\/*\/*\/pull\/*",
                "*:\/\/github.com\/*\/*",
                "*:\/\/github.com\/*\/*\/commits\/*"
            ],
            "js": [
                "lib.js",
                "unminimize_comments.js",
                "sort_signals.js",
                "remove_timeline_events.js",
                "expand_signals_box.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/github.com\/*\/*\/pull\/*\/files"
            ],
            "js": [
                "lib.js",
                "reorder_code_reviews.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "remove_cors.js"
        ],
        "persistent": true
    },
    "permissions": [
        "storage",
        "https:\/\/github.com\/*"
    ]
}