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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extracts all filenames from an entire Pixieset collection's set in a comma separeted format for use in Adobe Lightroom."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Pixieset Filename Extractor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" ] } ] } |