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 là gì?
Pixieset Filename Extractor là một tiện ích mở rộng Chrome được phát triển bởi sotiriskipouros.dev, và tính năng chính của nó là "Extracts all filenames from an entire Pixieset collection's set in a comma separeted format for use in Adobe Lightroom.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Pixieset Filename Extractor
Tải xuống các tệp mở rộng Pixieset Filename Extractor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Pixieset Filename Extractor |
ID | lehccaieiekecjmpibkijhhjbijiniic |
URL Chính Thức | https://chromewebstore.google.com/detail/pixieset-filename-extract/lehccaieiekecjmpibkijhhjbijiniic |
Mô tả | Extracts all filenames from an entire Pixieset collection's set in a comma separeted format for use in Adobe Lightroom. |
Kích Thước Tệp | 38.16 KB |
Số Lần Cài Đặt | 55 |
Phiên Bản Hiện Tại | 0.1.3 |
Cập Nhật Lần Cuối | 2023-02-06 |
Ngày Phát Hành | 2022-05-31 |
Nhà Phát Triển | sotiriskipouros.dev |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |