Better Maintenix
Adds Extra functions to Maintenix
Что такое Better Maintenix?
Better Maintenix - это расширение Chrome, разработанное Gavin, и его основная функция - "Adds Extra functions to Maintenix".
Снимки экрана расширения
Скачать файл CRX расширения Better Maintenix
Скачайте файлы расширений Better Maintenix в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Fixes the tiny action box on the work capture page.
Enables consistent naming conventions for faults
Quick access Non-MX bookings for timesheet
Adds quick markup, character counter, and a preview screen to the Add Steps page for task definitions
Distributed under the GNU GENERAL PUBLIC LICENSE available at https://fsf.org Основная информация о расширении
| Название | |
| ID | hccnbbjehddogfldlnckijklgeibclih |
| Официальный URL | https://chromewebstore.google.com/detail/better-maintenix/hccnbbjehddogfldlnckijklgeibclih |
| Описание | Adds Extra functions to Maintenix |
| Размер файла | 23.18 KB |
| Количество установок | 314 |
| Текущая Версия | 1.6.2 |
| Последнее Обновление | 2023-11-05 |
| Дата публикации | 2020-02-08 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | Gavin |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/Gavmo/Better-Maintenix |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Better Maintenix",
"description": "Adds Extra functions to Maintenix",
"version": "1.6.2",
"background": [],
"icons": {
"128": "128bm.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/maintenix.qantas.com.au\/*",
"https:\/\/mx-psup.qantas.com.au\/*",
"https:\/\/mx-pstg.qantas.com.au\/*",
"https:\/\/mx-uat.qcpaws.qantas.com.au\/*"
],
"js": [
"changes.js"
],
"css": [
"customstyle.css"
]
}
],
"permissions": [
"clipboardRead"
],
"web_accessible_resources": [
{
"resources": [
"names.json"
],
"matches": [
"https:\/\/maintenix.qantas.com.au\/*",
"https:\/\/mx-psup.qantas.com.au\/*",
"https:\/\/mx-pstg.qantas.com.au\/*",
"https:\/\/mx-uat.qcpaws.qantas.com.au\/*"
]
}
]
} | |