Github Buddy, yeah! a dog!

The lost github features you may want

Github Buddy, yeah! a dog! là gì?

Github Buddy, yeah! a dog! là một tiện ích mở rộng Chrome được phát triển bởi http://www.bbish.net, và tính năng chính của nó là "The lost github features you may want".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Github Buddy, yeah! a dog!

Tải xuống các tệp mở rộng Github Buddy, yeah! a dog! 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

                        Features:
* You can follow an organization in github
* There's a navigator when you view a file in github (there's options you can set)

v0.1.1
Add logo when you follow an org and view it in popup window (in screenshot 2, it's old, but the logo is there)
Add query on demand option, if turn on, it will only query data when you click the `dog` button on the right nav.(to speed up loading if you are rarely use this feature)
v0.1.0 hotfix: option menu(nothing else changed)
v0.0.9
Markdown Nav support (see screenshot 5, it should also support reStructuredText)
more stable (I think...)
add `loading...`

v0.0.7
fix previous bug: require refreshing page
more beautiful UI
move to react framework
the navigator is more beautiful and fast (might be a bit slow according to your net speed)

v0.0.5
add homepage
add simple code navigator (see screenshots, for now, require freshing page -- a bug? maybe someone can figure out the problem)
- supports go/php/js/erlang/java/c++ (maybe I forgot something...)

v0.0.3
add paginator
icon changed                    

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

Tên Github Buddy, yeah! a dog! Github Buddy, yeah! a dog!
ID obacpeecfhbgognjpnponfblnhpnepae
URL Chính Thức https://chrome.google.com/webstore/detail/github-buddy-yeah-a-dog/obacpeecfhbgognjpnponfblnhpnepae
Mô tả The lost github features you may want
Kích Thước Tệp 174 KB
Số Lần Cài Đặt 31
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2019-03-08
Ngày Phát Hành 2019-03-08
Nhà Phát Triển http://www.bbish.net
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Buddy, yeah! a dog!",
    "version": "0.1.1",
    "description": "The lost github features you may want",
    "icons": {
        "16": "assets\/dog-16x16.png",
        "32": "assets\/dog-32x32.png",
        "48": "assets\/dog-48x48.png",
        "256": "assets\/dog-256x256.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "unlimitedStorage",
        "https:\/\/*.githubusercontent.com\/"
    ],
    "background": {
        "scripts": [
            "service.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "browser_action": {
        "default_title": "Github Buddy, yeah! a dog!",
        "default_icon": {
            "48": "assets\/dog-48x48.png"
        },
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "css": [
                "navigator.css"
            ],
            "js": [
                ".\/static\/js\/content.js",
                ".\/static\/js\/navigator.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "assets\/*"
    ]
}