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 - это расширение Chrome, разработанное Simon C, и его основная функция - "This extension adds a button to the invoice screen".
Снимки экрана расширения
Скачать файл CRX расширения Go to Customer Button for QuickBooks Online
Скачайте файлы расширений 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 |
| Официальный URL | 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\/*"
]
} | |