DirectFN MIX Formatter
converts mix json response to tabular formatter with the capability of reassign request parameters
Что такое DirectFN MIX Formatter?
DirectFN MIX Formatter - это расширение Chrome, разработанное dfn.eg.dev, и его основная функция - "converts mix json response to tabular formatter with the capability of reassign request parameters".
Скачать файл CRX расширения DirectFN MIX Formatter
Скачайте файлы расширений DirectFN MIX Formatter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Основная информация о расширении
| Название | |
| ID | jgneocghijaghjgkddgkgjlhagkbggon |
| Официальный URL | https://chrome.google.com/webstore/detail/directfn-mix-formatter/jgneocghijaghjgkddgkgjlhagkbggon |
| Описание | converts mix json response to tabular formatter with the capability of reassign request parameters |
| Размер файла | 330 KB |
| Количество установок | 46 |
| Текущая Версия | 0.14 |
| Последнее Обновление | 2016-08-11 |
| Дата публикации | 2016-08-11 |
| Рейтинг | 5.00/5 Всего 6 оценок |
| Разработчик | dfn.eg.dev |
| Тип оплаты | free |
| Поддерживаемые языки | 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"
]
}
]
} | |