ShopUp
Manage your inventory from your facebook page directly.
什么是ShopUp?
ShopUp是由https://shopup.com.bd开发的Chrome扩展程序,该扩展的主要功能是“Manage your inventory from your facebook page directly.”。
扩展截图
下载ShopUp扩展crx文件
下载ShopUp扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
ShopUp Chrome extension lets sellers of ShopUp to sell directly from their Facebook Page.
Update: 0.0.3.3:
* Chrome 73 bug fixed
Update: 0.0.3.2:
* Product variation wise pricing
Features:
* Automatically detect name and phone number of buyer so seller don't have to copy paste.
* Using Facebook messenger platform, send receipt, ask for confirmation of the order from buyer.
* Automatic inventory changes synced with ShopUp dashboard.
* Draggable interface, so you don't reopen window over and over again.
* When user is not identifiable automatically generate pdf receipt. 扩展基本信息
| 名称 | |
| ID | aeheojjemgbgnklokfimkofdhfamofmp |
| 官方URL | https://chromewebstore.google.com/detail/shopup/aeheojjemgbgnklokfimkofdhfamofmp |
| 简介 | Manage your inventory from your facebook page directly. |
| 文件大小 | 205 KB |
| 安装次数 | 384 |
| 当前版本 | 0.0.3.3 |
| 更新时间 | 2019-04-01 |
| 上架时间 | 2019-04-01 |
| 评分 | 5.00/5 共15次评分 |
| 开发者 | https://shopup.com.bd |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://shopup.com.bd |
| 隐私政策页面URL | https://shopup.com.bd/privacy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "ShopUp",
"description": "Manage your inventory from your facebook page directly.",
"version": "0.0.3.3",
"browser_action": {
"default_icon": "images\/chrome-shopup-bag2x.png",
"default_popup": "index.html"
},
"icons": {
"16": "images\/shopup-icon-bag-16px.png",
"48": "images\/shopup-icon-bag-48px.png",
"128": "images\/shopup-icon-bag-128px.png"
},
"externally_connectable": {
"matches": [
"https:\/\/*.facebook.com\/*",
"https:\/\/*.shopup.com.bd\/admin\/*"
],
"accepts_tls_channel_id": false
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https:\/\/*.facebook.com\/*"
],
"js": [
"scripts\/requestParser.js",
"scripts\/external\/jquery.min.js",
"scripts\/external\/draggabilly.pkgd.js",
"scripts\/globals.js",
"scripts\/utils.js",
"scripts\/shopup.js",
"scripts\/facebook.js"
],
"css": [
"styles\/ele.css",
"styles\/main.css"
]
}
],
"web_accessible_resources": [
"images\/*"
],
"permissions": [
"activeTab",
"https:\/\/*.shopup.com.bd\/*",
"https:\/\/*.facebook.com\/*",
"https:\/\/*.shopup.com.bd\/*",
"webRequest",
"https:\/\/*.facebook.com\/*",
"*:\/\/*.shopup.com.bd\/*",
"cookies",
"https:\/\/*.facebook.com\/*",
"*:\/\/*.shopup.com.bd\/*",
"notifications",
"https:\/\/*.facebook.com\/*",
"*:\/\/*.shopup.com.bd\/*"
],
"background": {
"scripts": [
"scripts\/external\/jquery.min.js",
"scripts\/requestParser.js",
"scripts\/background.js"
]
}
} | |