CodeNav (Github code navigation)

Navigate Github code easily.

Vad är CodeNav (Github code navigation)?

CodeNav (Github code navigation) är en Chrome-tillägg utvecklad av Ian Webster, och dess huvudfunktion är "Navigate Github code easily.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner CodeNav (Github code navigation)-förlängningens CRX-fil

Ladda ner CodeNav (Github code navigation)-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        CodeNav makes it easier to explore code on Github.

Features
* Hover over a variable to highlight other references and visualize them on your scrollbar.
* Click an object or variable to search for other instances in the same project.                    

Grundläggande Information om Tillägg

Namn CodeNav (Github code navigation) CodeNav (Github code navigation)
ID nbgghbhaanommbapokejnmfdlddoacff
Officiell webbadress https://chromewebstore.google.com/detail/codenav-github-code-navig/nbgghbhaanommbapokejnmfdlddoacff
Beskrivning Navigate Github code easily.
Filstorlek 76.79 KB
Antal Installationer 437
Aktuell Version 0.0.13
Senast Uppdaterad 2017-02-13
Publiceringsdatum 2017-02-12
Betyg 4.20/5 Totalt 5 Betyg
Utvecklare Ian Webster
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://ianww.com/codenav
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CodeNav (Github code navigation)",
    "version": "0.0.13",
    "manifest_version": 2,
    "description": "Navigate Github code easily.",
    "homepage_url": "http:\/\/ianww.com\/codenav",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "permissions": [
        "https:\/\/github.com\/*",
        "http:\/\/github.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "http:\/\/github.com\/*"
            ],
            "js": [
                "src\/lib\/jquery.min.js",
                "src\/inject\/inject.js"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        }
    ]
}