Go to Customer Button for QuickBooks Online
This extension adds a button to the invoice screen
什麼是Go to Customer Button for QuickBooks Online?
Go to Customer Button for QuickBooks Online是由Simon C開發的Chrome擴展程式,該擴展的主要功能是“This extension adds a button to the invoice screen”。
擴展截圖
下載Go to Customer Button for QuickBooks Online擴展crx文件
下載Go to Customer Button for QuickBooks Online擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension adds a button to the invoice screen, allowing users to quickly visit the customer account for the customer associated with the invoice. 擴展基本資訊
| 名稱 | |
| ID | oihjnaipmkladihjdmlladafdidmclpg |
| 官方網址 | https://chromewebstore.google.com/detail/go-to-customer-button-for/oihjnaipmkladihjdmlladafdidmclpg |
| 簡介 | This extension adds a button to the invoice screen |
| 檔案大小 | 74.59 KB |
| 安裝次數 | 37 |
| 目前版本 | 1.0.1 |
| 更新時間 | 2018-11-21 |
| 上架時間 | 2018-11-21 |
| 開發者 | Simon C |
| 付費類型 | free |
| 支援的語言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Go to Customer Button for QuickBooks Online",
"description": "This extension adds a button to the invoice screen",
"version": "1.0.1",
"browser_action": {
"default_icon": "icon.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.qbo.intuit.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"permissions": [
"activeTab",
"http:\/\/*.qbo.intuit.com\/*",
"https:\/\/*.qbo.intuit.com\/*"
]
} | |