Product Picker
Select products on www.redbubble.com and download as excel format.
Co to jest Product Picker?
Product Picker to rozszerzenie Chrome opracowane przez danglanh.it, a jego główną funkcją jest „Select products on www.redbubble.com and download as excel format.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Product Picker
Pobierz pliki rozszerzeń Product Picker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Pick Mugs from https://www.redbubble.com and export to excel file in order to upload Amazon Products
Podstawowe informacje o rozszerzeniu
Nazwa | Product Picker |
ID | anahhmibpekabiniclphcegdhnbdemnh |
Oficjalny URL | https://chromewebstore.google.com/detail/product-picker/anahhmibpekabiniclphcegdhnbdemnh |
Opis | Select products on www.redbubble.com and download as excel format. |
Rozmiar pliku | 3.2 MB |
Liczba instalacji | 124 |
Aktualna Wersja | 1.0.17 |
Ostatnia Aktualizacja | 2019-10-29 |
Data Publikacji | 2019-10-29 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | danglanh.it |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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\/" ] } |