Git Well Soon

Because https://github.com/community/community/discussions/5486

Cos'è Git Well Soon?

Git Well Soon è un'estensione di Chrome sviluppata da chris.duflo, e la sua funzione principale è "Because https://github.com/community/community/discussions/5486".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Git Well Soon

Scarica i file di estensione Git Well Soon 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

                        Github: Persistent 'Hide whitespace changes' Setting

When reviewing pull requests on enterprise or commercial github, there is an option to hide whitespace changes. This option is not persistent and has to be toggle each time a user reviews a pull request. The option can be toggled by adding a query parameter to the url.

This extension knows when it is on a github pull request page and adds the query parameter to the url, effectively persisting the setting 'Hide whitespace changes'.

- Using the `Hide whitespace` checkbox within Github will be honored for the current pull request or commit diff view.                    

Informazioni di Base sull'Estensione

Nome Git Well Soon Git Well Soon
ID ehpeaofieafibmhiagianfjjblpnmbdo
URL Ufficiale https://chromewebstore.google.com/detail/git-well-soon/ehpeaofieafibmhiagianfjjblpnmbdo
Descrizione Because https://github.com/community/community/discussions/5486
Dimensione del File 9.78 KB
Conteggio Installazioni 194
Versione Corrente 0.0.0.3
Ultimo Aggiornamento 2023-01-28
Data di Pubblicazione 2022-11-03
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore chris.duflo
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/cduflo/gitwellsoon
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Git Well Soon",
    "description": "Because https:\/\/github.com\/community\/community\/discussions\/5486",
    "version": "0.0.0.3",
    "manifest_version": 3,
    "icons": {
        "128": "assets\/128x128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*\/pull\/*\/files*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "history",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*\/*\/pull\/*\/files*"
    ]
}