Mobeix Response Formatter
Chrome Extension to Beautify Mobeix Response
Cos'è Mobeix Response Formatter?
Mobeix Response Formatter è un'estensione di Chrome sviluppata da tagitextensions, e la sua funzione principale è "Chrome Extension to Beautify Mobeix Response".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Mobeix Response Formatter
Scarica i file di estensione Mobeix Response Formatter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | aadbccnfhppdlnleiebemjlbnehbecpj |
| URL Ufficiale | https://chromewebstore.google.com/detail/mobeix-response-formatter/aadbccnfhppdlnleiebemjlbnehbecpj |
| Descrizione | Chrome Extension to Beautify Mobeix Response |
| Dimensione del File | 47.76 KB |
| Conteggio Installazioni | 297 |
| Versione Corrente | 1.6 |
| Ultimo Aggiornamento | 2021-07-06 |
| Data di Pubblicazione | 2017-06-15 |
| Valutazione | 5.00/5 Totale 16 Valutazioni |
| Sviluppatore | tagitextensions |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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": []
} | |