Pixieset Filename Extractor

Extracts all filenames from an entire Pixieset collection's set in a comma separeted format for use in Adobe Lightroom.

Pixieset Filename Extractor란 무엇입니까?

Pixieset Filename Extractor은(는) sotiriskipouros.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extracts all filenames from an entire Pixieset collection's set in a comma separeted format for use in Adobe Lightroom."입니다.

확장 프로그램 스크린샷

screenshot

Pixieset Filename Extractor 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This is a simple Chrome extension which runs over any collection set page on Pixieset and extracts all filenames from the current set in a comma separated format.

This filename list can be used to find those photos into Adobe Lightroom.                    

확장 프로그램 기본 정보

이름 Pixieset Filename Extractor Pixieset Filename Extractor
ID lehccaieiekecjmpibkijhhjbijiniic
공식 URL https://chromewebstore.google.com/detail/pixieset-filename-extract/lehccaieiekecjmpibkijhhjbijiniic
설명 Extracts all filenames from an entire Pixieset collection's set in a comma separeted format for use in Adobe Lightroom.
파일 크기 38.16 KB
설치 횟수 55
현재 버전 0.1.3
최근 업데이트 2023-02-06
출시 날짜 2022-05-31
개발자 sotiriskipouros.dev
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Pixieset Filename Extractor",
    "version": "0.1.3",
    "description": "Extracts all filenames from an entire Pixieset collection's set in a comma separeted format for use in Adobe Lightroom.",
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "icons\/icon-16.png",
            "24": "icons\/icon-24.png",
            "32": "icons\/icon-32.png",
            "128": "icons\/icon-128.png"
        },
        "default_title": "Pixieset Filename Extractor",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/gallery.pixieset.com\/collection\/*\/",
                "*:\/\/gallery.pixieset.com\/collection\/*\/?g=*"
            ],
            "exclude_matches": [
                "*:\/\/*\/*update*",
                "*:\/\/*\/*cover*",
                "*:\/\/*\/*privacy*",
                "*:\/\/*\/*download*",
                "*:\/\/*\/*favorite*",
                "*:\/\/*\/*store*",
                "*:\/\/*\/*downloadactivity*",
                "*:\/\/*\/*favoriteactivity*",
                "*:\/\/*\/*privatephotoactivity*",
                "*:\/\/*\/*storeactivity*",
                "*:\/\/*\/*registrationactivity*",
                "*:\/\/*\/*settings*",
                "*:\/\/*\/*tools*"
            ],
            "run_at": "document_idle",
            "css": [
                "contentScript.css"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}