Extra GitHub PR Info

Edits to the GitHub UI to make it more informative

Qu'est-ce que Extra GitHub PR Info ?

Extra GitHub PR Info est une extension Chrome développée par Meta, et sa fonction principale est "Edits to the GitHub UI to make it more informative".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Extra GitHub PR Info

Téléchargez les fichiers d'extension Extra GitHub PR Info 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

                        A collection of GitHub quality of life improvements:

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

Informations de Base sur l'Extension

Nom Extra GitHub PR Info Extra GitHub PR Info
ID pianlbphbcjkcghlboepagpoilanigff
URL Officiel https://chromewebstore.google.com/detail/extra-github-pr-info/pianlbphbcjkcghlboepagpoilanigff
Description Edits to the GitHub UI to make it more informative
Taille du Fichier 38.37 KB
Nombre d'Installations 231
Version Actuelle 1.8.3
Dernière Mise à Jour 2021-09-30
Date de Publication 2020-03-11
Développeur Meta
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/driazati/github-extension
URL de la Page d'Aide https://github.com/driazati/github-extension
Langues Prises en Charge 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\/*"
    ]
}