GitHub go to line number

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

GitHub go to line number là gì?

GitHub go to line number là một tiện ích mở rộng Chrome được phát triển bởi NicoSantangelo, và tính năng chính của nó là "Open-source extension which adds a go to line number modal right into GitHub".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng GitHub go to line number

Tải xuống các tệp mở rộng GitHub go to line number dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GitHub go to line number GitHub go to line number
ID cbpdahjcomdapkaojlbhbbmopbmbecio
URL Chính Thức https://chromewebstore.google.com/detail/github-go-to-line-number/cbpdahjcomdapkaojlbhbbmopbmbecio
Mô tả Open-source extension which adds a go to line number modal right into GitHub
Kích Thước Tệp 16.24 KB
Số Lần Cài Đặt 103
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2016-07-19
Ngày Phát Hành 2016-07-18
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển NicoSantangelo
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/NicoSantangelo/github-go-to-line-number
URL Trang Chính Sách Bảo Mật https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}