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
        }
    ]
}