GitHub Diff Explorer

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

Τι είναι το GitHub Diff Explorer;

Το GitHub Diff Explorer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον alexdodge, και η κύρια λειτουργία του είναι "The GitHub Diff Explorer is a minimalist browser add-on which generates a seamless file explorer in GitHub pull requests".

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

screenshot

Λήψη αρχείου CRX της επέκτασης GitHub Diff Explorer

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

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

                        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                    

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

Όνομα GitHub Diff Explorer GitHub Diff Explorer
ID kagcmhcnjehpeihgmcohmdceffihkglk
Επίσημο URL https://chromewebstore.google.com/detail/github-diff-explorer/kagcmhcnjehpeihgmcohmdceffihkglk
Περιγραφή The GitHub Diff Explorer is a minimalist browser add-on which generates a seamless file explorer in GitHub pull requests
Μέγεθος Αρχείου 110 KB
Αριθμός Εγκαταστάσεων 256
Τρέχουσα Έκδοση 1.3.0
Τελευταία Ενημέρωση 2021-03-09
Ημερομηνία Δημοσίευσης 2019-07-26
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής alexdodge
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://gde.alexdodge.ca/
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/alexmdodge/github-diff-explorer/issues
URL της Σελίδας Πολιτικής Απορρήτου https://gde.alexdodge.ca/privacy-policy.html
Υποστηριζόμενες Γλώσσες 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
}