GitHub Issues Instant Solutions

Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.

GitHub Issues Instant Solutions là gì?

GitHub Issues Instant Solutions là một tiện ích mở rộng Chrome được phát triển bởi Martin Galovic, và tính năng chính của nó là "Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.".

Ả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 Instant Solutions

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

                        Find Github Issue solution instantly — just click "Jump to the solution" button                    

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

Tên GitHub Issues Instant Solutions GitHub Issues Instant Solutions
ID efdnmggekpecdpgllnnlehdobkealhem
URL Chính Thức https://chromewebstore.google.com/detail/github-issues-instant-sol/efdnmggekpecdpgllnnlehdobkealhem
Mô tả Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.
Kích Thước Tệp 227 KB
Số Lần Cài Đặt 67
Phiên Bản Hiện Tại 1.0.5
Cập Nhật Lần Cuối 2020-02-29
Ngày Phát Hành 2020-02-29
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Martin Galovic
Loại Thanh Toán free
Trang Web Mở Rộng https://issues.martingalovic.com
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Issues Instant Solutions",
    "version": "1.0.5",
    "description": "Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.",
    "icons": {
        "16": "public\/icons\/icon_16.png",
        "48": "public\/icons\/icon_48.png",
        "128": "public\/icons\/icon_128.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "public\/background_script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/www.github.com\/*",
                "http:\/\/github.com\/*",
                "http:\/\/www.github.com\/*"
            ],
            "css": [
                "public\/github_content_styles.css"
            ],
            "js": [
                "public\/underscore.min.js",
                "public\/jquery.min.js",
                "public\/github_content_script.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/www.github.com\/*",
        "http:\/\/github.com\/*",
        "http:\/\/www.github.com\/*"
    ],
    "browser_action": {
        "default_icon": "public\/icons\/icon_16.png",
        "default_popup": "public\/html\/popup.html"
    }
}