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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | ShopUp |
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" ] } } |