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
官方網址 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
        }
    ]
}