Photo Gallerify

A simple extension that creates a gallery from a page that contains photos.

Photo Gallerifyとは何ですか?

Photo GallerifyはVille Lahdenvuoによって開発されたChromeの拡張機能で、その主な機能は「A simple extension that creates a gallery from a page that contains photos.」です。

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

screenshot

Photo Gallerify拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Turn an directory listing full of images into a nice gallery view.

Want support for a specific site or site type? Click Support and file an issue or better yet, do it yourself the project is open source! :)                    

拡張機能の基本情報

名前 Photo Gallerify Photo Gallerify
ID liognlajafcooaeknecphpkfaafgkgna
公式URL https://chrome.google.com/webstore/detail/photo-gallerify/liognlajafcooaeknecphpkfaafgkgna
説明 A simple extension that creates a gallery from a page that contains photos.
ファイルサイズ 1.26 MB
インストール数 5,000
現在のバージョン 1.1.1
最終更新日 2015-05-01
公開日 2015-05-01
評価 2.40/5 合計 15 レビュー
開発者 Ville Lahdenvuo
支払い方法 free
拡張機能のウェブサイト https://github.com/tuhoojabotti/photo-gallerify
ヘルプページのURL https://github.com/tuhoojabotti/photo-gallerify/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_ExtensionName__",
    "description": "__MSG_ExtensionDesc__",
    "version": "1.1.1",
    "manifest_version": 2,
    "default_locale": "en",
    "homepage_url": "http:\/\/tuhoojabotti.com",
    "minimum_chrome_version": "25",
    "permissions": [
        "",
        "tabs"
    ],
    "icons": {
        "512": "gfx\/512.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "19": "gfx\/19.png",
            "38": "gfx\/38.png",
            "512": "gfx\/512.png"
        },
        "default_title": "__MSG_Gallerify__"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "ftp:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "vendor\/jquery.js",
                "vendor\/masonry.js",
                "js\/detectors.js",
                "js\/content.js"
            ],
            "css": [
                "gallery.css"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}