Photo Gallerify

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

Qu'est-ce que Photo Gallerify ?

Photo Gallerify est une extension Chrome développée par Ville Lahdenvuo, et sa fonction principale est "A simple extension that creates a gallery from a page that contains photos.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Photo Gallerify

Téléchargez les fichiers d'extension Photo Gallerify au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Photo Gallerify Photo Gallerify
ID liognlajafcooaeknecphpkfaafgkgna
URL Officiel https://chrome.google.com/webstore/detail/photo-gallerify/liognlajafcooaeknecphpkfaafgkgna
Description A simple extension that creates a gallery from a page that contains photos.
Taille du Fichier 1.26 MB
Nombre d'Installations 5,000
Version Actuelle 1.1.1
Dernière Mise à Jour 2015-05-01
Date de Publication 2015-05-01
Évaluation 2.40/5 Total 15 Évaluations
Développeur Ville Lahdenvuo
Type de Paiement free
Site Web de l'Extension https://github.com/tuhoojabotti/photo-gallerify
URL de la Page d'Aide https://github.com/tuhoojabotti/photo-gallerify/issues
Langues Prises en Charge 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
        }
    ]
}