Photo Gallerify

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

O que é Photo Gallerify?

Photo Gallerify é uma extensão do Chrome desenvolvida por Ville Lahdenvuo, e sua principal característica é "A simple extension that creates a gallery from a page that contains photos.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Photo Gallerify

Baixe arquivos de extensão Photo Gallerify no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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! :)                    

Informações Básicas da Extensão

Nome Photo Gallerify Photo Gallerify
ID liognlajafcooaeknecphpkfaafgkgna
URL Oficial https://chrome.google.com/webstore/detail/photo-gallerify/liognlajafcooaeknecphpkfaafgkgna
Descrição A simple extension that creates a gallery from a page that contains photos.
Tamanho do Arquivo 1.26 MB
Contagem de Instalações 5,000
Versão Atual 1.1.1
Última Atualização 2015-05-01
Data de Publicação 2015-05-01
Classificação 2.40/5 Total de 15 Avaliações
Desenvolvedor Ville Lahdenvuo
Tipo de Pagamento free
Site da Extensão https://github.com/tuhoojabotti/photo-gallerify
URL da Página de Ajuda https://github.com/tuhoojabotti/photo-gallerify/issues
Idiomas Suportados 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
        }
    ]
}