GitHub Image Preview

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

What is GitHub Image Preview?

GitHub Image Preview is a Chrome extension developed by samkessaram, and its main feature is "Preview issue images on GitHub. https://github.com/samkessaram/git-preview".

Extension Screenshots

screenshot

Download GitHub Image Preview Extension CRX File

Download GitHub Image Preview extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name GitHub Image Preview GitHub Image Preview
ID jkappkhadcobonipjjgfkcmnkpapegma
Official URL https://chromewebstore.google.com/detail/github-image-preview/jkappkhadcobonipjjgfkcmnkpapegma
Description Preview issue images on GitHub. https://github.com/samkessaram/git-preview
File Size 37.45 KB
Installation Count 15
Current Version 0.1.6
Last Updated 2018-01-04
Publish Date 2018-01-04
Rating 5.00/5 Total 1 Ratings
Developer samkessaram
Email [email protected]
Payment Type free
Extension Website https://github.com/samkessaram/git-preview
Supported Languages 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"
        }
    ]
}