Photo Gallerify

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

Photo Gallerify क्या है?

Photo Gallerify Ville Lahdenvuo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple extension that creates a gallery from a page that contains photos."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Photo Gallerify एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
        }
    ]
}