GitHub go to line number

Open-source extension which adds a go to line number modal right into GitHub

Was ist GitHub go to line number?

GitHub go to line number ist eine Chrome-Erweiterung, die von NicoSantangelo entwickelt wurde, und ihr Hauptmerkmal ist "Open-source extension which adds a go to line number modal right into GitHub".

Erweiterungsscreenshots

screenshot
screenshot

GitHub go to line number-Erweiterungs-CRX-Datei herunterladen

Laden Sie GitHub go to line number-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        If you ever wanted to find a particular line number on GitHub and grew frustrated because Chrome refuses to find it, this is for you.

The modal is toggled pressing ctrl+g and supports both diffs and single code files. You can cycle throughout the results using the enter key to move forward and shift+enter to move backwards.                    

Grundlegende Informationen zur Erweiterung

Name GitHub go to line number GitHub go to line number
ID cbpdahjcomdapkaojlbhbbmopbmbecio
Offizielle URL https://chromewebstore.google.com/detail/github-go-to-line-number/cbpdahjcomdapkaojlbhbbmopbmbecio
Beschreibung Open-source extension which adds a go to line number modal right into GitHub
Dateigröße 16.24 KB
Installationsanzahl 103
Aktuelle Version 1.2.0
Letztes Update 2016-07-19
Veröffentlichungsdatum 2016-07-18
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler NicoSantangelo
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/NicoSantangelo/github-go-to-line-number
URL der Datenschutzrichtlinien-Seite https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub go to line number",
    "description": "Open-source extension which adds a go to line number modal right into GitHub",
    "short_name": "Github goto",
    "version": "1.2.0",
    "icons": {
        "16": "icons\/16.png",
        "19": "icons\/19.png",
        "38": "icons\/38.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.github.com\/*",
                "http:\/\/www.github.com\/*",
                "https:\/\/github.com\/*",
                "http:\/\/github.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [],
    "web_accessible_resources": [
        "modal.html"
    ]
}