GitHub Image Preview

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

GitHub Image Previewとは何ですか?

GitHub Image Previewはsamkessaramによって開発されたChromeの拡張機能で、その主な機能は「Preview issue images on GitHub. https://github.com/samkessaram/git-preview」です。

拡張機能のスクリーンショット

screenshot

GitHub Image Preview拡張機能のCRXファイルをダウンロード

GitHub Image Preview拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 GitHub Image Preview GitHub Image Preview
ID jkappkhadcobonipjjgfkcmnkpapegma
公式URL https://chromewebstore.google.com/detail/github-image-preview/jkappkhadcobonipjjgfkcmnkpapegma
説明 Preview issue images on GitHub. https://github.com/samkessaram/git-preview
ファイルサイズ 37.45 KB
インストール数 15
現在のバージョン 0.1.6
最終更新日 2018-01-04
公開日 2018-01-04
評価 5.00/5 合計 1 レビュー
開発者 samkessaram
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/samkessaram/git-preview
対応言語 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"
        }
    ]
}