GitHub Image Preview

Preview issue images on GitHub. https://github.com/samkessaram/git-preview

GitHub Image Preview là gì?

GitHub Image Preview là một tiện ích mở rộng Chrome được phát triển bởi samkessaram, và tính năng chính của nó là "Preview issue images on GitHub. https://github.com/samkessaram/git-preview".

Ả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 Image Preview

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

                        Preview images on GitHub from the issues list view. An icon is added to any issue that contains images or screenshots. Click it to open a carousel and cycle through the images. Inspired by similar functionality in Reddit Enhancement Suite.                    

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

Tên GitHub Image Preview GitHub Image Preview
ID jkappkhadcobonipjjgfkcmnkpapegma
URL Chính Thức https://chromewebstore.google.com/detail/github-image-preview/jkappkhadcobonipjjgfkcmnkpapegma
Mô tả Preview issue images on GitHub. https://github.com/samkessaram/git-preview
Kích Thước Tệp 37.45 KB
Số Lần Cài Đặt 15
Phiên Bản Hiện Tại 0.1.6
Cập Nhật Lần Cuối 2018-01-04
Ngày Phát Hành 2018-01-04
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển samkessaram
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/samkessaram/git-preview
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Image Preview",
    "author": "Sam Kessaram",
    "version": "0.1.6",
    "description": "Preview issue images on GitHub. https:\/\/github.com\/samkessaram\/git-preview",
    "icons": {
        "128": "camera.png"
    },
    "web_accessible_resources": [
        "camera.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "scripts.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_end"
        }
    ]
}