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开发的Chrome扩展程序,该扩展的主要功能是“Extracts all filenames from an entire Pixieset collection's set in a comma separeted format for use in Adobe Lightroom.”。
扩展截图
下载Pixieset Filename Extractor扩展crx文件
下载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" ] } ] } |