Better Maintenix
Adds Extra functions to Maintenix
Was ist Better Maintenix?
Better Maintenix ist eine Chrome-Erweiterung, die von Gavin entwickelt wurde, und ihr Hauptmerkmal ist "Adds Extra functions to Maintenix".
Erweiterungsscreenshots
Better Maintenix-Erweiterungs-CRX-Datei herunterladen
Laden Sie Better Maintenix-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | hccnbbjehddogfldlnckijklgeibclih |
| Offizielle URL | https://chromewebstore.google.com/detail/better-maintenix/hccnbbjehddogfldlnckijklgeibclih |
| Beschreibung | Adds Extra functions to Maintenix |
| Dateigröße | 23.18 KB |
| Installationsanzahl | 314 |
| Aktuelle Version | 1.6.2 |
| Letztes Update | 2023-11-05 |
| Veröffentlichungsdatum | 2020-02-08 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | Gavin |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/Gavmo/Better-Maintenix |
| Unterstützte Sprachen | 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\/*"
]
}
]
} | |