github-find

A plugin for searcing within Github repos.

github-find là gì?

github-find là một tiện ích mở rộng Chrome được phát triển bởi Aidan Feldman, và tính năng chính của nó là "A plugin for searcing within Github repos.".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng github-find

Tải xuống các tệp mở rộng github-find 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

                        When viewing a repository on the Github website, an Octocat icon will appear in the address bar - press CTL-SHIFT-f and a search box will appear.

Check out the source here: https://github.com/afeld/github-find                    

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

Tên github-find github-find
ID blocadmfchabihonegcgjjikbbmpliph
URL Chính Thức https://chromewebstore.google.com/detail/github-find/blocadmfchabihonegcgjjikbbmpliph
Mô tả A plugin for searcing within Github repos.
Kích Thước Tệp 40.7 KB
Số Lần Cài Đặt 164
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2013-02-18
Ngày Phát Hành 2013-02-17
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Aidan Feldman
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/afeld/github-find
URL Trang Trợ Giúp https://github.com/afeld/github-find/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "github-find",
    "version": "1.0.2",
    "manifest_version": 2,
    "icons": {
        "16": "favicon.ico"
    },
    "description": "A plugin for searcing within Github repos.",
    "homepage_url": "https:\/\/github.com\/afeld\/github-find",
    "background": {
        "scripts": [
            "jquery-1.9.1.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": "favicon.ico",
        "default_title": "Click or press Ctrl+Shift+F to search this repository."
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/*"
            ],
            "exclude_globs": [
                "*github.com\/*\/"
            ],
            "js": [
                "jquery-1.9.1.min.js",
                "jquery.ui.position.min.js",
                "content-keydown.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ]
}