Git History Browser Extension

Agrega un botón a github para ver el historial del archivo / Add a button to github to see the file history

Τι είναι το Git History Browser Extension;

Το Git History Browser Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Luis Reinoso, και η κύρια λειτουργία του είναι "Agrega un botón a github para ver el historial del archivo / Add a button to github to see the file history".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Git History Browser Extension

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

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

                        This browser extension adds a button (when you visit a file on github, gitlab, bitbucket) to open file on https://githistory.xyz

v1.0.8
* Display button on new github UI. #12

Note:
It still and issue to handle events on subfolder, to display the button you will need to reload the page only when you navigate on subfolders

v1.0.7
* Update support for gitlab.

v1.0.6
* Fix issue: Extension prevents login to bitbucket.org (again)

v1.0.5
* Fix issue: Extension prevents login to bitbucket.org, add button to new bitbucket ui.

v1.0.4
* Fix issue: A new Open in Git History button is being created each time I click on a line gutter
* Use lightweight ajax handler in GitHub
* Use location.hostname instead of document.URL.split

v1.0.3
* Agregado botón git history en gitlab y bitbucket.                    

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

Όνομα Git History Browser Extension Git History Browser Extension
ID laghnmifffncfonaoffcndocllegejnf
Επίσημο URL https://chromewebstore.google.com/detail/git-history-browser-exten/laghnmifffncfonaoffcndocllegejnf
Περιγραφή Agrega un botón a github para ver el historial del archivo / Add a button to github to see the file history
Μέγεθος Αρχείου 19.4 KB
Αριθμός Εγκαταστάσεων 7,395
Τρέχουσα Έκδοση 1.0.8
Τελευταία Ενημέρωση 2023-10-14
Ημερομηνία Δημοσίευσης 2020-05-06
Αξιολόγηση 4.75/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής Luis Reinoso
Ηλεκτρονικό ταχυδρομείο lreinoso.calero@gmail.com
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/LuisReinoso/git-history-browser-extension
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/LuisReinoso/git-history-browser-extension
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Git History Browser Extension",
    "author": "Luis Reinoso",
    "description": "Agrega un bot\u00f3n a github para ver el historial del archivo \/ Add a button to github to see the file history",
    "homepage_url": "https:\/\/github.com\/LuisReinoso\/git-history-browser-extension",
    "version": "1.0.8",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gitlab.com\/*",
                "https:\/\/bitbucket.org\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icons\/git-history-16x16.png",
        "48": "icons\/git-history-48x48.png",
        "128": "icons\/git-history-128x128.png",
        "500": "icons\/git-history-500x500.png"
    }
}