Better Maintenix
Adds Extra functions to Maintenix
Better Maintenixとは何ですか?
Better MaintenixはGavinによって開発されたChromeの拡張機能で、その主な機能は「Adds Extra functions to Maintenix」です。
拡張機能のスクリーンショット
Better Maintenix拡張機能のCRXファイルをダウンロード
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 |
| Eメール | [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\/*"
]
}
]
} | |