Git Well Soon

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

Τι είναι το Git Well Soon;

Το Git Well Soon είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον chris.duflo, και η κύρια λειτουργία του είναι "Because https://github.com/community/community/discussions/5486".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Git Well Soon

Λήψη αρχείων επέκτασης Git Well Soon σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Git Well Soon Git Well Soon
ID ehpeaofieafibmhiagianfjjblpnmbdo
Επίσημο URL https://chromewebstore.google.com/detail/git-well-soon/ehpeaofieafibmhiagianfjjblpnmbdo
Περιγραφή Because https://github.com/community/community/discussions/5486
Μέγεθος Αρχείου 9.78 KB
Αριθμός Εγκαταστάσεων 194
Τρέχουσα Έκδοση 0.0.0.3
Τελευταία Ενημέρωση 2023-01-28
Ημερομηνία Δημοσίευσης 2022-11-03
Αξιολόγηση 4.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής chris.duflo
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/cduflo/gitwellsoon
Υποστηριζόμενες Γλώσσες 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*"
    ]
}