Pixieset Filename Extractor

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

Was ist Pixieset Filename Extractor?

Pixieset Filename Extractor ist eine Chrome-Erweiterung, die von sotiriskipouros.dev entwickelt wurde, und ihr Hauptmerkmal ist "Extracts all filenames from an entire Pixieset collection's set in a comma separeted format for use in Adobe Lightroom.".

Erweiterungsscreenshots

screenshot

Pixieset Filename Extractor-Erweiterungs-CRX-Datei herunterladen

Laden Sie Pixieset Filename Extractor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Pixieset Filename Extractor Pixieset Filename Extractor
ID lehccaieiekecjmpibkijhhjbijiniic
Offizielle URL https://chromewebstore.google.com/detail/pixieset-filename-extract/lehccaieiekecjmpibkijhhjbijiniic
Beschreibung Extracts all filenames from an entire Pixieset collection's set in a comma separeted format for use in Adobe Lightroom.
Dateigröße 38.16 KB
Installationsanzahl 55
Aktuelle Version 0.1.3
Letztes Update 2023-02-06
Veröffentlichungsdatum 2022-05-31
Entwickler sotiriskipouros.dev
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}