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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sotiriskipouros.dev และคุณลักษณะหลักของมันคือ "Extracts all filenames from an entire Pixieset collection's set in a comma separeted format for use in Adobe Lightroom."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pixieset Filename Extractor
ดาวน์โหลดไฟล์ส่วนขยาย Pixieset Filename Extractor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } ] } |