InView
Add an InView invoice and bill calendar widget to the dashboard of your Xero account
Что такое InView?
InView - это расширение Chrome, разработанное Amaka, и его основная функция - "Add an InView invoice and bill calendar widget to the dashboard of your Xero account".
Снимки экрана расширения
Скачать файл CRX расширения InView
Скачайте файлы расширений InView в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Add an InView invoice and bill calendar widget to the dashboard of your Xero account Основная информация о расширении
| Название | |
| ID | eglebnjmhoklkdjgnliokbjfjgmjpmck |
| Официальный URL | https://chromewebstore.google.com/detail/inview/eglebnjmhoklkdjgnliokbjfjgmjpmck |
| Описание | Add an InView invoice and bill calendar widget to the dashboard of your Xero account |
| Размер файла | 138 KB |
| Количество установок | 77 |
| Текущая Версия | 1.2.0 |
| Последнее Обновление | 2023-01-17 |
| Дата публикации | 2019-05-22 |
| Рейтинг | 3.67/5 Всего 3 оценок |
| Разработчик | Amaka |
| Электронная почта | [email protected] |
| Тип оплаты | in_app |
| Официальный сайт расширения | https://www.inviewapp.com/ |
| URL страницы помощи | https://www.inviewapp.com/contact |
| URL страницы политики конфиденциальности | https://amaka.com/privacy-policy |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "InView",
"version": "1.2.0",
"description": "Add an InView invoice and bill calendar widget to the dashboard of your Xero account",
"background": {
"scripts": [
"scripts\/background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*:\/\/*.xero.com\/Dashboard\/",
"*:\/\/*.xero.com\/Dashboard\/default.aspx",
"*:\/\/*.xero.com\/Dashboard\/Default5.aspx",
"*:\/\/*.xero.com\/app\/*\/dashboard"
],
"css": [
"styles\/fullcalendar.min.css",
"styles\/styles.css"
],
"js": [
"scripts\/jquery.min.js",
"scripts\/moment.min.js",
"scripts\/popper.min.js",
"scripts\/tooltip.min.js",
"scripts\/fullcalendar.min.js",
"scripts\/index.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
"template.html",
"styles\/fullcalendar.min.css",
"styles\/styles.css",
"scripts\/jquery.min.js",
"scripts\/moment.min.js",
"scripts\/popper.min.js",
"scripts\/tooltip.min.js",
"scripts\/fullcalendar.min.js"
],
"icons": {
"16": "images\/icon16.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"manifest_version": 2
} | |