MyGit

MyGit - Extension for GitHub

MyGit là gì?

MyGit là một tiện ích mở rộng Chrome được phát triển bởi eschao, và tính năng chính của nó là "MyGit - Extension for GitHub".

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

screenshot
screenshot
screenshot
screenshot

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

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

                        MyGit is a browser extension for GitHub. It is designed to provide extra convenient functions for GitHub user. MyGit supports public GitHub and GitHub Enterprise, due to limitation of browser extension, only the IBM GitHub enterprise is available now. If you need to support a new GitHub enterprise, please tell me to add.

Changes in v0.6.4:
Since public github is upgraded, some functions provided by MyGit can't work. This version will address the below problems:
* Fix bug of missing "Add Favorite Repository" menu
* Fix bug of "Issue Preview"
* Disable "Label color list" function

Changes in v0.6.3:
* Fix a bug when export issues

Changes in v0.6.2:
* Support to export Zenhub data for issues. Since zenhub API has a limitation on 100 calling per minutes, you may encounter long time exporting when you have hundreds issues.

MyGit now provides the below functions:
* Add a "Star" icon menu in GitHub top banner, You can add a repository as a favorite one or quickly jump to special repository through this menu.
* Add a "Export" button in issue page, You can export issues as CSV file.
* Add a "Save" icon menu in issue filter input box. You can save a filter with customized name and get it in "Filters" dropdown list.
* Add a rich color list for label creation
* Support preview issue when mouse is over a issue link in issue and pull request pages                    

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

Tên MyGit MyGit
ID oaiohmmoefnkfdbjjkjnconhnhpiigel
URL Chính Thức https://chromewebstore.google.com/detail/mygit/oaiohmmoefnkfdbjjkjnconhnhpiigel
Mô tả MyGit - Extension for GitHub
Kích Thước Tệp 253 KB
Số Lần Cài Đặt 75
Phiên Bản Hiện Tại 0.6.4
Cập Nhật Lần Cuối 2018-02-05
Ngày Phát Hành 2018-02-04
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển eschao
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/eschao/MyGit-Extension
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "eschao",
    "name": "MyGit",
    "permissions": [
        "storage",
        "tabs",
        "https:\/\/*.github.com\/*",
        "https:\/\/github.ibm.com\/*",
        "https:\/\/zenhub.innovate.ibm.com\/*",
        "https:\/\/*.zenhub.io\/*"
    ],
    "version": "0.6.4",
    "manifest_version": 2,
    "description": "MyGit - Extension for GitHub",
    "icons": {
        "128": "img\/icon\/mygit_128.png",
        "48": "img\/icon\/mygit_48.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon\/mygit_19.png",
            "38": "img\/icon\/mygit_38.png"
        },
        "default_popup": "popup.html",
        "default_title": "MyGit"
    },
    "background": {
        "scripts": [
            "src\/js\/config.js",
            "src\/js\/browser_api.js",
            "src\/js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.github.com\/*",
                "https:\/\/github.ibm.com\/*"
            ],
            "css": [
                "css\/inject.css"
            ],
            "js": [
                "src\/js\/utils.js",
                "src\/js\/config.js",
                "src\/js\/browser_api.js",
                "src\/js\/github_api.js",
                "src\/js\/inject\/FileSaver.min.js",
                "src\/js\/inject\/drag_drop.js",
                "src\/js\/inject\/issue_export_dialog.js",
                "src\/js\/inject\/issue_filter.js",
                "src\/js\/inject\/issue_injector.js",
                "src\/js\/inject\/issue_preview.js",
                "src\/js\/inject\/favorite_repos_injector.js",
                "src\/js\/inject\/labels_injector.js",
                "src\/js\/inject\/injector.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "js\/*",
        "templates\/*",
        "img\/*",
        "fonts\/*"
    ]
}