Boloo Buddy
De gemakkelijkste manier om product toe te voegen aan de Boloo product tracker
What is Boloo Buddy?
Boloo Buddy is a Chrome extension developed by https://boloo.co, and its main feature is "De gemakkelijkste manier om product toe te voegen aan de Boloo product tracker".
Extension Screenshots
Download Boloo Buddy Extension CRX File
Download Boloo Buddy extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Start, groei en schaal jouw bol.com business met Boloo. Ontdek winstgevende producten die je vandaag op bol.com kunt verkopen met dé product research tool voor bol.com. Klantvragen AI Beantwoord klantvragen snel en effectief direct vanuit je bol.com verkoopaccount. Behoud de persoonlijke touch terwijl je efficiëntie jouw tijd en energie maximaliseert. Product tracker Kijk achter de schermen naar de verkoopcijfers van een product op bol.com en twijfel nooit meer over de potentie van een product. Met de chrome-extensie Boloo Buddy kun je gemakkelijk producten in product tracker toevoegen vanaf de bol.com website. Product database Ontdek winstgevende producten in het assortiment door te filteren op het aantal sales, de reviews, categorieën en meer. Winstcalculator Gebruik de winstcalculator om snel & eenvoudig de exacte winst van elk product te berekenen.
Extension Basic Information
Name | Boloo Buddy |
ID | fefpocfmkbkncjkocjbejmnmpgkhpnap |
Official URL | https://chromewebstore.google.com/detail/boloo-buddy/fefpocfmkbkncjkocjbejmnmpgkhpnap |
Description | De gemakkelijkste manier om product toe te voegen aan de Boloo product tracker |
File Size | 1.12 MB |
Installation Count | 9,587 |
Current Version | 1.10.3 |
Last Updated | 2024-02-23 |
Publish Date | 2020-07-02 |
Rating | 5.00/5 Total 5 Ratings |
Developer | https://boloo.co |
[email protected] | |
Payment Type | free |
Extension Website | https://boloo.co |
Help Page URL | https://boloo.co/contact |
Privacy Policy Page URL | https://boloo.co/privacy-statement-boloo-bv |
Supported Languages | nl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Boloo Buddy", "description": "De gemakkelijkste manier om product toe te voegen aan de Boloo product tracker", "version": "1.10.3", "homepage_url": "https:\/\/boloo.co\/", "author": "Boloo", "permissions": [ "scripting", "activeTab", "storage" ], "host_permissions": [ "https:\/\/*.boloo.co\/*", "https:\/\/*.bol.com\/*" ], "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "57": "images\/icon_57.png", "72": "images\/icon_72.png", "114": "images\/icon_114.png", "128": "images\/icon_128.png", "144": "images\/icon_144.png" }, "externally_connectable": { "matches": [ "https:\/\/app.boloo.co\/*" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.bol.com\/*\/p\/*" ], "js": [ "productPage.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/*.bol.com\/*\/t\/*", "https:\/\/*.bol.com\/*\/l\/*", "https:\/\/*.bol.com\/*\/ra\/*", "https:\/\/*.bol.com\/*\/s\/*", "https:\/\/*.bol.com\/*\/w\/*" ], "js": [ "searchPage.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/*.bol.com\/sdd\/cases\/*" ], "js": [ "customerSupportPage.js" ], "run_at": "document_end" } ], "background": { "service_worker": "background.js" } } |