GitHub Diff Explorer

The GitHub Diff Explorer is a minimalist browser add-on which generates a seamless file explorer in GitHub pull requests

Cos'è GitHub Diff Explorer?

GitHub Diff Explorer è un'estensione di Chrome sviluppata da alexdodge, e la sua funzione principale è "The GitHub Diff Explorer is a minimalist browser add-on which generates a seamless file explorer in GitHub pull requests".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione GitHub Diff Explorer

Scarica i file di estensione GitHub Diff Explorer 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 provides:
- Dark mode styles for all supported browsers
- More screen real estate with a full width view and resizable explorer
- Improved review management and organization with collapsible folder views
- Deep links to line references and review comments
- Automatically marking viewed files in the folder view
- Support for all other GitHub PR functionality                    

Informazioni di Base sull'Estensione

Nome GitHub Diff Explorer GitHub Diff Explorer
ID kagcmhcnjehpeihgmcohmdceffihkglk
URL Ufficiale https://chromewebstore.google.com/detail/github-diff-explorer/kagcmhcnjehpeihgmcohmdceffihkglk
Descrizione The GitHub Diff Explorer is a minimalist browser add-on which generates a seamless file explorer in GitHub pull requests
Dimensione del File 110 KB
Conteggio Installazioni 256
Versione Corrente 1.3.0
Ultimo Aggiornamento 2021-03-09
Data di Pubblicazione 2019-07-26
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore alexdodge
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://gde.alexdodge.ca/
URL della Pagina di Aiuto https://github.com/alexmdodge/github-diff-explorer/issues
URL della Pagina della Politica sulla Privacy https://gde.alexdodge.ca/privacy-policy.html
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "default_locale": "en",
    "version": "1.3.0",
    "description": "The GitHub Diff Explorer is a minimalist browser add-on which generates a seamless file explorer in GitHub pull requests",
    "author": "Alex Dodge",
    "short_name": "GitHub Diff Explorer",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        },
        "default_title": "GitHub Diff Explorer",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*"
            ],
            "css": [
                "lib\/gde_styles.css"
            ],
            "js": [
                "lib\/gde_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/github.com\/"
    ],
    "version_name": "1.3.0",
    "offline_enabled": true
}