Product Picker
Select products on www.redbubble.com and download as excel format.
Product Picker क्या है?
Product Picker danglanh.it द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Select products on www.redbubble.com and download as excel format."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Product Picker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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\/" ] } |