Photo Gallerify

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

Vad är Photo Gallerify?

Photo Gallerify är en Chrome-tillägg utvecklad av Ville Lahdenvuo, och dess huvudfunktion är "A simple extension that creates a gallery from a page that contains photos.".

Tilläggsskärmbilder

screenshot

Ladda ner Photo Gallerify-förlängningens CRX-fil

Ladda ner Photo Gallerify-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Photo Gallerify Photo Gallerify
ID liognlajafcooaeknecphpkfaafgkgna
Officiell webbadress https://chrome.google.com/webstore/detail/photo-gallerify/liognlajafcooaeknecphpkfaafgkgna
Beskrivning A simple extension that creates a gallery from a page that contains photos.
Filstorlek 1.26 MB
Antal Installationer 5,000
Aktuell Version 1.1.1
Senast Uppdaterad 2015-05-01
Publiceringsdatum 2015-05-01
Betyg 2.40/5 Totalt 15 Betyg
Utvecklare Ville Lahdenvuo
Betalningssätt free
Tilläggswebbplats https://github.com/tuhoojabotti/photo-gallerify
Hjälpsida URL https://github.com/tuhoojabotti/photo-gallerify/issues
Stödda Språk 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
        }
    ]
}