github-issue-utils

Utilities for GitHub Issues

github-issue-utils là gì?

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

Ả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-issue-utils

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

                        Finds all users for a GitHub project and creates filter links to their issue queues.

As a project manager for many projects which use GitHub, It makes my life easier to look at what issues are assigned to a particular user. GitHub issues does not have a UI for this, but you can craft a URL to show you a list of all issues assigned to a particular user.

This extension crafts these URLs for you by turning your "Assigned to me" filter link into a dropdown of "Assigned to" links for each user of your project.

## Changelog
1.4: fixes to extension regarding manifest and changes to github DOM
1.3: fix an incorrect filename resulting in a bad install.
1.2: re-apply our changes after an XHR (which github tends to use a lot)
1.1: fixed issue where elements were added even if we didn't have a valid list of users to operate upon.                    

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

Tên github-issue-utils github-issue-utils
ID fhehiakkggdpbcgknhebkbhiadnpplag
URL Chính Thức https://chromewebstore.google.com/detail/github-issue-utils/fhehiakkggdpbcgknhebkbhiadnpplag
Mô tả Utilities for GitHub Issues
Kích Thước Tệp 122 KB
Số Lần Cài Đặt 29
Phiên Bản Hiện Tại 1.4
Cập Nhật Lần Cuối 2014-03-23
Ngày Phát Hành 2014-03-23
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển sirkitree
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/sirkitree/github-issue-utils
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.4",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "icon-16.png",
        "128": "icon-128.png"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*\/issues*",
                "https:\/\/github.com\/*\/*\/issues",
                "https:\/\/github.com\/*\/*\/issues\/*\/*"
            ],
            "css": [
                "styles\/main.css"
            ],
            "js": [
                "components\/jquery\/jquery.min.js",
                "main.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "components\/jquery\/jquery.min.map"
    ]
}