Product Picker
Select products on www.redbubble.com and download as excel format.
Was ist Product Picker?
Product Picker ist eine Chrome-Erweiterung, die von danglanh.it entwickelt wurde, und ihr Hauptmerkmal ist "Select products on www.redbubble.com and download as excel format.".
Erweiterungsscreenshots
Product Picker-Erweiterungs-CRX-Datei herunterladen
Laden Sie Product Picker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Pick Mugs from https://www.redbubble.com and export to excel file in order to upload Amazon Products Grundlegende Informationen zur Erweiterung
| Name | |
| ID | anahhmibpekabiniclphcegdhnbdemnh |
| Offizielle URL | https://chromewebstore.google.com/detail/product-picker/anahhmibpekabiniclphcegdhnbdemnh |
| Beschreibung | Select products on www.redbubble.com and download as excel format. |
| Dateigröße | 3.2 MB |
| Installationsanzahl | 124 |
| Aktuelle Version | 1.0.17 |
| Letztes Update | 2019-10-29 |
| Veröffentlichungsdatum | 2019-10-29 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | danglanh.it |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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\/"
]
} | |