Shopify integration for Gmail
With Storeye you can view and edit your Shopify store information directly in Gmail.
什麼是Shopify integration for Gmail?
Shopify integration for Gmail是由https://storakle.com開發的Chrome擴展程式,該擴展的主要功能是“With Storeye you can view and edit your Shopify store information directly in Gmail.”。
擴展截圖
下載Shopify integration for Gmail擴展crx文件
下載Shopify integration for Gmail擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Storeye integrates your Shopify store with Gmail. With Storeye you can: 1. View customer information for the email you are currently working with in Gmail. 2. Edit customer information. 3. View order information for the current customer. This information includes complete, open, cancelled, abandoned orders. 4. Edit information for each order. 5. View abandoned checkouts for the current customer. 6. View a customer information summary. 6. Search for customer information by customer name, email or domain name. With precise and instant information, Gmail users and store managers can get the complete picture from their Shopify store, thus perform an informed and effective sales and customer service operation.
擴展基本資訊
名稱 | Shopify integration for Gmail |
ID | iaipokgkdlncejbfdaamcdiaapjjcaje |
官方網址 | https://chromewebstore.google.com/detail/shopify-integration-for-g/iaipokgkdlncejbfdaamcdiaapjjcaje |
簡介 | With Storeye you can view and edit your Shopify store information directly in Gmail. |
檔案大小 | 95.49 KB |
安裝次數 | 183 |
目前版本 | 1.0.0.6 |
更新時間 | 2018-02-24 |
上架時間 | 2018-02-23 |
評分 | 4.00/5 共 3 次評分 |
開發者 | https://storakle.com |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://storeye.storakle.com/ |
隱私政策頁面URL | https://storeye.storakle.com/privacypolicy |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Shopify integration for Gmail", "short_name": "Storeye", "version": "1.0.0.6", "manifest_version": 2, "description": "With Storeye you can view and edit your Shopify store information directly in Gmail.", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage", "background", "https:\/\/api.storeye.storakle.com\/", "https:\/\/www.storeye.storakle.com\/extensionui\/", "http:\/\/mail.google.com\/", "https:\/\/mail.google.com\/" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/mail.google.com\/*", "https:\/\/mail.google.com\/*" ], "js": [ "main.js" ] }, { "matches": [ "http:\/\/www.storeye.storakle.com\/*", "https:\/\/www.storeye.storakle.com\/*", "http:\/\/storeye.storakle.com\/*", "https:\/\/storeye.storakle.com\/*" ], "js": [ "storakleInstallation.js" ] } ] } |