Poshmark Utility Belt
A Poshmark extension that provides utility functionality to users for managing and making sales through Poshmark
Poshmark Utility Beltคืออะไร?
Poshmark Utility Belt เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://dankcellarstudio.com และคุณลักษณะหลักของมันคือ "A Poshmark extension that provides utility functionality to users for managing and making sales through Poshmark"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Poshmark Utility Belt
ดาวน์โหลดไฟล์ส่วนขยาย Poshmark Utility Belt ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A Poshmark chrome extension that provides utility functionality to users for making sales through Poshmark! Features: - Follower and Party mode sharing for Poshmark closets Development: - Tracking sale records - Listing creation helper Increase your sales today! #poshify
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Poshmark Utility Belt |
ID | fpidpammgcoakopbiojdgmmbkgpkcgll |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/poshmark-utility-belt/fpidpammgcoakopbiojdgmmbkgpkcgll |
คำอธิบาย | A Poshmark extension that provides utility functionality to users for managing and making sales through Poshmark |
ขนาดไฟล์ | 43.92 KB |
จำนวนการติดตั้ง | 48 |
เวอร์ชันปัจจุบัน | 2.15 |
อัปเดตครั้งล่าสุด | 2020-10-12 |
วันที่เผยแพร่ | 2020-06-16 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | https://dankcellarstudio.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Poshmark Utility Belt", "short_name": "Poshify", "description": "A Poshmark extension that provides utility functionality to users for managing and making sales through Poshmark", "version": "2.15", "icons": { "16": "public\/icon16.png", "48": "public\/icon48.png", "128": "public\/icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/poshmark.com\/closet\/*" ], "js": [ "jquery.slim.min.js", "content.js" ] } ], "page_action": { "default_title": "Posh Utility Belt", "default_popup": "public\/popup.html" }, "permissions": [ "declarativeContent", "tabs" ] } |