Fiverr Seller Assistant
Fiverr Seller Assistant helps you see buyer request details, show notifications, hide balance & much more
Fiverr Seller Assistantคืออะไร?
Fiverr Seller Assistant เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sprise และคุณลักษณะหลักของมันคือ "Fiverr Seller Assistant helps you see buyer request details, show notifications, hide balance & much more"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fiverr Seller Assistant
ดาวน์โหลดไฟล์ส่วนขยาย Fiverr Seller Assistant ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
⚙️ Fiverr Seller Assistant is an all-in-one seller tool that has everything you need to succeed, all packed in one extension! 📈 Features ✓ Hide balance - Hides your seller balance ✓ Money Calculator - Type “$” next to your desired amount (example: $20) in chat to instantly know & adjust your profits ✓ Notifications - Get notifications on Windows whenever you receive messages ✓ Buyer Request Details - See buyer’s details next to their request ✓ Buyer Profile Popup - Hover over your cursor over buyer’s profile image to peek into their profile ✓ No account required to use the extension ✓ Fast and light 💳 Pricing Fiverr Seller Assistant is the most affordable seller assistant tool on the market. Access all the features for just $5/month. No account required to sign up, and you can cancel at any time, hassle-free! 🏆 How does Fiverr Tools compare with Fiverr +, Fiverr Plus, Fiverr Quick View, Fivlytics, Fiverrlytics, Smart Fiverr, Fiverr Gig Rank Checker, Fiverr SEO, Fiverr Workspace and FivData - Freelancer Assistant? Fiverr Toolkit is a feature-rich, redundancy-free, privacy-focused solution and probably the most affordable solution to increase your productivity. Start using Seller Assistant within seconds without signing up for an account! 🔒 Privacy Policy Please note that our extension accesses web pages information. Data is stored only in your local storage. We do not have access to your data. 📝 Disclaimer Our extension does NOT belong or is related to the official application/website in any way. It is an unofficial app that is developed and maintained independently. 👋 Contact If you have any questions or concerns, feel free to contact [email protected]
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | fjepbcpodlcpbifghkicbibfeajgkcab |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/fiverr-seller-assistant/fjepbcpodlcpbifghkicbibfeajgkcab |
คำอธิบาย | Fiverr Seller Assistant helps you see buyer request details, show notifications, hide balance & much more |
ขนาดไฟล์ | 70.45 KB |
จำนวนการติดตั้ง | 3,124 |
เวอร์ชันปัจจุบัน | 1 |
อัปเดตครั้งล่าสุด | 2022-03-09 |
วันที่เผยแพร่ | 2022-03-01 |
คะแนน | 2.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | Sprise |
อีเมล | [email protected] |
ประเภทการชำระเงิน | in_app |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Fiverr Seller Assistant", "description": "Fiverr Seller Assistant helps you see buyer request details, show notifications, hide balance & much more", "version": "1", "background": { "service_worker": "background\/service_worker.js" }, "action": { "default_popup": "popup\/index.html" }, "icons": { "16": "assets\/logo.png", "48": "assets\/logo.png", "128": "assets\/logo.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.fiverr.com\/*" ], "js": [ "content\/hideBalance.js" ] }, { "matches": [ "https:\/\/www.fiverr.com\/users\/*" ], "js": [ "content\/buyerRequestsDetails.js", "content\/profilePopup.js" ], "css": [ "content\/profilePopup.css" ] }, { "matches": [ "https:\/\/www.fiverr.com\/inbox\/*" ], "js": [ "content\/inboxPopupCalculator.js", "content\/offerMoneyCalculator.js" ], "css": [ "content\/moneyCalculator.css" ] } ], "permissions": [ "storage", "alarms", "notifications", "background" ], "host_permissions": [ "https:\/\/*\/*", "https:\/\/www.fiverr.com\/*", "https:\/\/fiverr.com\/*" ] } |