GitHub Issues

Browser extension that adds handy tweaks for issues at GitHub.

GitHub Issues là gì?

GitHub Issues là một tiện ích mở rộng Chrome được phát triển bởi Richard Fridrich, và tính năng chính của nó là "Browser extension that adds handy tweaks for issues at 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 Issues

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

                        Browser extension that adds a few handy tweaks to issues at GitHub:

- Hide label changes.
- Hide reassignments.
- Hide milestone changes.
- Hide emojis.
- Hide "+1" comments and display them as a counter/summary.

Source code for this extension is available at:
https://github.com/fczbkk/github-issues-extension                    

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

Tên GitHub Issues GitHub Issues
ID jlhpeckkndnaidhfihcmlihekebdepgg
URL Chính Thức https://chromewebstore.google.com/detail/github-issues/jlhpeckkndnaidhfihcmlihekebdepgg
Mô tả Browser extension that adds handy tweaks for issues at GitHub.
Kích Thước Tệp 12.85 KB
Số Lần Cài Đặt 17
Phiên Bản Hiện Tại 0.3.2
Cập Nhật Lần Cuối 2015-03-13
Ngày Phát Hành 2015-03-13
Nhà Phát Triển Richard Fridrich
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Issues",
    "version": "0.3.2",
    "manifest_version": 2,
    "description": "Browser extension that adds handy tweaks for issues at GitHub.",
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*\/issues\/*",
                "*:\/\/*.github.com\/*\/pull\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "options_page": "options.html",
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "permissions": [
        "storage"
    ]
}