Nested Folders for Google Photos

Add the feature of nested folders to Google Photos.

Nested Folders for Google Photos क्या है?

Nested Folders for Google Photos Jereme Guenther द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add the feature of nested folders to Google Photos."।

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

screenshot

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

crx प्रारूप में Nested Folders for Google Photos एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        For many years Google has failed to listen to its users and give us the ability to have a folder structure in whatever photos product they happen to be pushing.  So I have written a small Chrome plugin that attempts to fix this issue.

This is the third major version of this plugin, unfortunately rather than making it better the major versions have just been to keep up with google's new products, first Picasa, then G+, now Photos.

This is v1 for Photos, and it is pretty rough, especially since I wrote it in one night.  But it seems to function, could use some CSS help though.

Use the naming structure Folder/Folder/Folder/Album when creating your album names.

ChangeLog:

v0.403 - Change album names to display only the name of the level navigated to rather than the entire name.
v0.402 - add settings to control error retries, scroll attempts, scroll wait time during initial load.
v0.401 - Port to Google Photos                    

एक्सटेंशन की मूल जानकारी

नाम Nested Folders for Google Photos Nested Folders for Google Photos
ID mehjcgdbdmogjojkhjgmlkalcipmijej
आधिकारिक URL https://chromewebstore.google.com/detail/nested-folders-for-google/mehjcgdbdmogjojkhjgmlkalcipmijej
विवरण Add the feature of nested folders to Google Photos.
फ़ाइल का आकार 1.41 MB
स्थापना संख्या 544
वर्तमान संस्करण 0.405
अंतिम अपडेट 2017-05-07
प्रकाशन तिथि 2017-05-07
रेटिंग 3.00/5 कुल 4 रेटिंग्स
डेवलपर Jereme Guenther
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL http://jeremeguenther.blogspot.com/2012/12/nested-folders-for-picasaweb.html
समर्थित भाषाएँ en-US
manifest.json
{
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "NestedFoldersContent.js"
            ],
            "matches": [
                "http:\/\/photos.google.com\/*",
                "https:\/\/photos.google.com\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "description": "Add the feature of nested folders to Google Photos.",
    "icons": {
        "128": "folder-browsing128.png",
        "24": "folder-browsing24.png",
        "48": "folder-browsing48.png"
    },
    "manifest_version": 2,
    "name": "Nested Folders for Google Photos",
    "options_page": "options.html",
    "page_action": {
        "default_icon": "folder-browsing24.png",
        "default_title": "Nested Folders"
    },
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.405"
}