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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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