wTool
A ferramenta definitiva para auxiliar quem vende em marketplaces melhorar seus resultados.
Was ist wTool?
wTool ist eine Chrome-Erweiterung, die von Thiago Roieski Maltezo entwickelt wurde, und ihr Hauptmerkmal ist "A ferramenta definitiva para auxiliar quem vende em marketplaces melhorar seus resultados.".
Erweiterungsscreenshots
wTool-Erweiterungs-CRX-Datei herunterladen
Laden Sie wTool-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
Use a wTool para facilitar a pesquisa de mercado nos principais marketplaces do Brasil.
A ferramenta é gratuita e sempre será.
Na versão 0.0.1 apenas a shopee está disponível. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | nmcemgmhejoicfanbehbdichbendlabk |
| Offizielle URL | https://chromewebstore.google.com/detail/wtool/nmcemgmhejoicfanbehbdichbendlabk |
| Beschreibung | A ferramenta definitiva para auxiliar quem vende em marketplaces melhorar seus resultados. |
| Dateigröße | 190 KB |
| Installationsanzahl | 1,156 |
| Aktuelle Version | 0.0.1 |
| Letztes Update | 2023-11-15 |
| Veröffentlichungsdatum | 2023-11-15 |
| Bewertung | 5.00/5 Insgesamt 7 Bewertungen |
| Entwickler | Thiago Roieski Maltezo |
| [email protected] | |
| Zahlungsart | free |
| URL der Datenschutzrichtlinien-Seite | https://thiagomorello.com/wtool/politica-de-privacidade.pdf |
| Unterstützte Sprachen | pt-BR |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "wTool",
"author": "Thiago Roieski Maltezo",
"description": "A ferramenta definitiva para auxiliar quem vende em marketplaces melhorar seus resultados.",
"version": "0.0.1",
"manifest_version": 3,
"background": {
"service_worker": "\/background\/background.js"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"action": {
"default_popup": "\/popup\/index.html",
"default_icon": {
"16": "\/icons\/16.png",
"24": "\/icons\/24.png",
"32": "\/icons\/32.png"
},
"default_title": "wTool"
},
"permissions": [
"storage",
"scripting",
"activeTab",
"tabs",
"unlimitedStorage"
],
"content_scripts": [
{
"all_frames": true,
"matches": [
"https:\/\/mercadolivre.com.br\/*",
"https:\/\/*.mercadolivre.com.br\/*"
],
"css": [
"\/content_scripts\/renders\/assets\/ui.css"
],
"js": [
"\/libs\/jquery.min.js",
"\/content_scripts\/renders\/ui.js",
"\/content_scripts\/mercadolivre.js"
]
},
{
"all_frames": true,
"matches": [
"https:\/\/*.shopee.com.br\/*",
"https:\/\/shopee.com.br\/*"
],
"js": [
"\/libs\/jquery.min.js",
"\/content_scripts\/renders\/shopee\/searchResults.js",
"\/content_scripts\/renders\/shopee\/productInformation.js",
"\/content_scripts\/renders\/shopee\/autoFollow.js",
"\/content_scripts\/utils\/injector.js",
"\/content_scripts\/classes\/shopee.js",
"\/content_scripts\/shopee.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"\/content_scripts\/renders\/assets\/*"
],
"matches": [
"https:\/\/mercadolivre.com.br\/*",
"https:\/\/*.mercadolivre.com.br\/*"
]
},
{
"resources": [
"\/content_scripts\/utils\/*",
"\/content_scripts\/renders\/assets\/*",
"\/content_scripts\/renders\/assets\/shopee\/*.css"
],
"matches": [
"https:\/\/*.shopee.com.br\/*"
]
}
],
"icons": {
"16": "\/icons\/16.png",
"32": "\/icons\/32.png",
"48": "\/icons\/48.png",
"128": "\/icons\/128.png"
}
} | |