Pixieset Filename Extractor

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

Cos'è Pixieset Filename Extractor?

Pixieset Filename Extractor è un'estensione di Chrome sviluppata da sotiriskipouros.dev, e la sua funzione principale è "Extracts all filenames from an entire Pixieset collection's set in a comma separeted format for use in Adobe Lightroom.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Pixieset Filename Extractor

Scarica i file di estensione Pixieset Filename Extractor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Pixieset Filename Extractor Pixieset Filename Extractor
ID lehccaieiekecjmpibkijhhjbijiniic
URL Ufficiale https://chromewebstore.google.com/detail/pixieset-filename-extract/lehccaieiekecjmpibkijhhjbijiniic
Descrizione Extracts all filenames from an entire Pixieset collection's set in a comma separeted format for use in Adobe Lightroom.
Dimensione del File 38.16 KB
Conteggio Installazioni 55
Versione Corrente 0.1.3
Ultimo Aggiornamento 2023-02-06
Data di Pubblicazione 2022-05-31
Sviluppatore sotiriskipouros.dev
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}