Mobeix Response Formatter
Chrome Extension to Beautify Mobeix Response
什麼是Mobeix Response Formatter?
Mobeix Response Formatter是由tagitextensions開發的Chrome擴展程式,該擴展的主要功能是“Chrome Extension to Beautify Mobeix Response”。
擴展截圖
下載Mobeix Response Formatter擴展crx文件
下載Mobeix Response Formatter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Identify error response – Identify error response in a single click.
Prettify conveniently – Use Prettify buttons for formatting the Mobeix response string.
Copy and paste conveniently – Use Copy Prettified Response buttons for copying the complete response in one click.
Version 1.2
- Supports utf-16 response.
Version 1.3
- resolved bugs.
- enabled copy paste option.
Version 1.4
- supports Mobeix response containing JSON values.
Version 1.5
- Upgraded to Manifest version 3.
- Removed activeTab permission.
Version 1.6
- Removed tabs permission. 擴展基本資訊
| 名稱 | |
| ID | aadbccnfhppdlnleiebemjlbnehbecpj |
| 官方網址 | https://chromewebstore.google.com/detail/mobeix-response-formatter/aadbccnfhppdlnleiebemjlbnehbecpj |
| 簡介 | Chrome Extension to Beautify Mobeix Response |
| 檔案大小 | 47.76 KB |
| 安裝次數 | 297 |
| 目前版本 | 1.6 |
| 更新時間 | 2021-07-06 |
| 上架時間 | 2017-06-15 |
| 評分 | 5.00/5 共 16 次評分 |
| 開發者 | tagitextensions |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Mobeix Response Formatter",
"description": "Chrome Extension to Beautify Mobeix Response",
"version": "1.6",
"icons": {
"128": "icon.png"
},
"action": {
"default_icon": "icon.png"
},
"background": {
"service_worker": "eventPage.js"
},
"content_scripts": [
{
"matches": [
"file:\/\/\/*"
],
"css": [],
"js": [
"contentScript.js"
]
}
],
"permissions": []
} | |