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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add the feature of nested folders to Google Photos."입니다.

확장 프로그램 스크린샷

screenshot

Nested Folders for Google Photos 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
}