Product Picker
Select products on www.redbubble.com and download as excel format.
什么是Product Picker?
Product Picker是由danglanh.it开发的Chrome扩展程序,该扩展的主要功能是“Select products on www.redbubble.com and download as excel format.”。
扩展截图
下载Product Picker扩展crx文件
下载Product Picker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Pick Mugs from https://www.redbubble.com and export to excel file in order to upload Amazon Products
扩展基本信息
名称 | Product Picker |
ID | anahhmibpekabiniclphcegdhnbdemnh |
官方URL | https://chromewebstore.google.com/detail/product-picker/anahhmibpekabiniclphcegdhnbdemnh |
简介 | Select products on www.redbubble.com and download as excel format. |
文件大小 | 3.2 MB |
安装次数 | 124 |
当前版本 | 1.0.17 |
更新时间 | 2019-10-29 |
上架时间 | 2019-10-29 |
评分 | 5.00/5 共2次评分 |
开发者 | danglanh.it |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Product Picker", "description": "Select products on www.redbubble.com and download as excel format.", "version": "1.0.17", "manifest_version": 2, "icons": { "16": "icons\/icon_16.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "browser_action": { "default_title": "Product Picker", "default_popup": "popup\/popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.redbubble.com\/*" ], "css": [ "css\/redbubble-style.css" ], "js": [ "pp_redbubble_content.js" ], "all_frames": true, "run_at": "document_end" }, { "matches": [ "https:\/\/www.all-overlove.com\/*" ], "css": [ "css\/all-overlove-style.css" ], "js": [ "pp_all_overlove_content.js" ], "all_frames": true, "run_at": "document_end" }, { "matches": [ "https:\/\/www.spreadshirt.com\/*" ], "css": [ "css\/spreadshirt-style.css" ], "js": [ "pp_spreadshirt_content.js" ], "all_frames": true, "run_at": "document_end" }, { "matches": [ "https:\/\/www.threadless.com\/*" ], "css": [ "css\/threadless-style.css" ], "js": [ "pp_threadless_content.js" ], "all_frames": true, "run_at": "document_end" }, { "matches": [ "https:\/\/www.ccmug.com\/*" ], "css": [ "css\/ccmug-style.css" ], "js": [ "pp_ccmug_content.js" ], "all_frames": true, "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] }, "options_ui": { "page": "options\/options.html", "chrome_style": true }, "permissions": [ "storage", "activeTab", "tabs", "downloads", "https:\/\/sellercentral.amazon.com\/" ] } |