Product Picker
Select products on www.redbubble.com and download as excel format.
Wat is Product Picker?
Product Picker is een Chrome-extensie ontwikkeld door danglanh.it, en de belangrijkste functie is "Select products on www.redbubble.com and download as excel format.".
Extensie Screenshots
Download het CRX-bestand van de extensie Product Picker
Download Product Picker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Pick Mugs from https://www.redbubble.com and export to excel file in order to upload Amazon Products
Basisinformatie over de Extensie
Naam | Product Picker |
ID | anahhmibpekabiniclphcegdhnbdemnh |
Officiële URL | https://chromewebstore.google.com/detail/product-picker/anahhmibpekabiniclphcegdhnbdemnh |
Beschrijving | Select products on www.redbubble.com and download as excel format. |
Bestandsgrootte | 3.2 MB |
Aantal Installaties | 124 |
Huidige Versie | 1.0.17 |
Laatst Bijgewerkt | 2019-10-29 |
Publicatiedatum | 2019-10-29 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | danglanh.it |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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\/" ] } |