DirectFN MIX Formatter
converts mix json response to tabular formatter with the capability of reassign request parameters
Was ist DirectFN MIX Formatter?
DirectFN MIX Formatter ist eine Chrome-Erweiterung, die von dfn.eg.dev entwickelt wurde, und ihr Hauptmerkmal ist "converts mix json response to tabular formatter with the capability of reassign request parameters".
DirectFN MIX Formatter-Erweiterungs-CRX-Datei herunterladen
Laden Sie DirectFN MIX Formatter-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
Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jgneocghijaghjgkddgkgjlhagkbggon |
| Offizielle URL | https://chrome.google.com/webstore/detail/directfn-mix-formatter/jgneocghijaghjgkddgkgjlhagkbggon |
| Beschreibung | converts mix json response to tabular formatter with the capability of reassign request parameters |
| Dateigröße | 330 KB |
| Installationsanzahl | 46 |
| Aktuelle Version | 0.14 |
| Letztes Update | 2016-08-11 |
| Veröffentlichungsdatum | 2016-08-11 |
| Bewertung | 5.00/5 Insgesamt 6 Bewertungen |
| Entwickler | dfn.eg.dev |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": "icon-128.png",
"default_title": "DirectFN MIX Formatter"
},
"name": "DirectFN MIX Formatter",
"short_name": "DirectFN MIX Formatter",
"description": "converts mix json response to tabular formatter with the capability of reassign request parameters",
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"permissions": [
"tabs",
"http:\/\/dfn-uds.directfn.com\/DfnUDS\/ClientServiceProvider",
"https:\/\/dfn-uds.directfn.com\/DfnUDS\/ClientServiceProvider",
"http:\/\/dfn-uds.directfn.com\/DfnUDS\/DCMServiceProvider",
"https:\/\/dfn-uds.directfn.com\/DfnUDS\/DCMServiceProvider",
"unlimitedStorage"
],
"version": "0.14",
"manifest_version": 2,
"content_scripts": [
{
"matches": [
"http:\/\/*\/*\/ClientServiceProvider*",
"https:\/\/*\/*\/ClientServiceProvider*",
"http:\/\/*\/*\/DCMServiceProvider*",
"https:\/\/*\/*\/DCMServiceProvider*"
],
"js": [
"jquery-1.10.2.js",
"jquery-ui.js",
"background.js",
"moment.min.js"
],
"css": [
"jquery-ui.css",
"style.css"
]
}
]
} | |