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是由https://dankcellarstudio.com开发的Chrome扩展程序,该扩展的主要功能是“A Poshmark extension that provides utility functionality to users for managing and making sales through Poshmark”。
扩展截图
下载Poshmark Utility Belt扩展crx文件
下载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 扩展基本信息
| 名称 | |
| 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"
]
} | |