GitHub go to line number

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

什麼是GitHub go to line number?

GitHub go to line number是由NicoSantangelo開發的Chrome擴展程式,該擴展的主要功能是“Open-source extension which adds a go to line number modal right into GitHub”。

擴展截圖

screenshot
screenshot

下載GitHub go to line number擴展crx文件

下載GitHub go to line number擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 GitHub go to line number GitHub go to line number
ID cbpdahjcomdapkaojlbhbbmopbmbecio
官方網址 https://chromewebstore.google.com/detail/github-go-to-line-number/cbpdahjcomdapkaojlbhbbmopbmbecio
簡介 Open-source extension which adds a go to line number modal right into GitHub
檔案大小 16.24 KB
安裝次數 103
目前版本 1.2.0
更新時間 2016-07-19
上架時間 2016-07-18
評分 5.00/5 共 4 次評分
開發者 NicoSantangelo
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/NicoSantangelo/github-go-to-line-number
隱私政策頁面URL https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md
支援的語言 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"
    ]
}