GitHub go to line number

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

What is GitHub go to line number?

GitHub go to line number is a Chrome extension developed by NicoSantangelo, and its main feature is "Open-source extension which adds a go to line number modal right into GitHub".

Extension Screenshots

screenshot
screenshot

Download GitHub go to line number Extension CRX File

Download GitHub go to line number extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name GitHub go to line number GitHub go to line number
ID cbpdahjcomdapkaojlbhbbmopbmbecio
Official URL 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
File Size 16.24 KB
Installation Count 103
Current Version 1.2.0
Last Updated 2016-07-19
Publish Date 2016-07-18
Rating 5.00/5 Total 4 Ratings
Developer NicoSantangelo
Email [email protected]
Payment Type free
Extension Website https://github.com/NicoSantangelo/github-go-to-line-number
Privacy Policy Page URL https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md
Supported Languages 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"
    ]
}