Product Picker
Select products on www.redbubble.com and download as excel format.
Product Picker là gì?
Product Picker là một tiện ích mở rộng Chrome được phát triển bởi danglanh.it, và tính năng chính của nó là "Select products on www.redbubble.com and download as excel format.".
Ả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 Product Picker
Tải xuống các tệp mở rộng Product Picker 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
Pick Mugs from https://www.redbubble.com and export to excel file in order to upload Amazon Products
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Product Picker |
ID | anahhmibpekabiniclphcegdhnbdemnh |
URL Chính Thức | https://chromewebstore.google.com/detail/product-picker/anahhmibpekabiniclphcegdhnbdemnh |
Mô tả | Select products on www.redbubble.com and download as excel format. |
Kích Thước Tệp | 3.2 MB |
Số Lần Cài Đặt | 124 |
Phiên Bản Hiện Tại | 1.0.17 |
Cập Nhật Lần Cuối | 2019-10-29 |
Ngày Phát Hành | 2019-10-29 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | danglanh.it |
[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", "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\/" ] } |