GitHub go to line number

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

Qu'est-ce que GitHub go to line number ?

GitHub go to line number est une extension Chrome développée par NicoSantangelo, et sa fonction principale est "Open-source extension which adds a go to line number modal right into GitHub".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension GitHub go to line number

Téléchargez les fichiers d'extension GitHub go to line number au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom GitHub go to line number GitHub go to line number
ID cbpdahjcomdapkaojlbhbbmopbmbecio
URL Officiel https://chromewebstore.google.com/detail/github-go-to-line-number/cbpdahjcomdapkaojlbhbbmopbmbecio
Description Open-source extension which adds a go to line number modal right into GitHub
Taille du Fichier 16.24 KB
Nombre d'Installations 103
Version Actuelle 1.2.0
Dernière Mise à Jour 2016-07-19
Date de Publication 2016-07-18
Évaluation 5.00/5 Total 4 Évaluations
Développeur NicoSantangelo
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/NicoSantangelo/github-go-to-line-number
URL de la Page de Politique de Confidentialité https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md
Langues Prises en Charge 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"
    ]
}