Photo Gallerify

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

Cos'è Photo Gallerify?

Photo Gallerify è un'estensione di Chrome sviluppata da Ville Lahdenvuo, e la sua funzione principale è "A simple extension that creates a gallery from a page that contains photos.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Photo Gallerify

Scarica i file di estensione Photo Gallerify in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Photo Gallerify Photo Gallerify
ID liognlajafcooaeknecphpkfaafgkgna
URL Ufficiale https://chrome.google.com/webstore/detail/photo-gallerify/liognlajafcooaeknecphpkfaafgkgna
Descrizione A simple extension that creates a gallery from a page that contains photos.
Dimensione del File 1.26 MB
Conteggio Installazioni 5,000
Versione Corrente 1.1.1
Ultimo Aggiornamento 2015-05-01
Data di Pubblicazione 2015-05-01
Valutazione 2.40/5 Totale 15 Valutazioni
Sviluppatore Ville Lahdenvuo
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/tuhoojabotti/photo-gallerify
URL della Pagina di Aiuto https://github.com/tuhoojabotti/photo-gallerify/issues
Lingue Supportate 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
        }
    ]
}