YAPI MOCK Plugin
Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code
Что такое YAPI MOCK Plugin?
YAPI MOCK Plugin - это расширение Chrome, разработанное kaku_fe, и его основная функция - "Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code".
Снимки экрана расширения
Скачать файл CRX расширения YAPI MOCK Plugin
Скачайте файлы расширений YAPI MOCK Plugin в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
You can use the extension to Quickly intercepted the request defined on your yapi platform
How to used:
https://github.com/JackyTianer/yapi-mock-proxy-plugin Основная информация о расширении
| Название | |
| ID | hmilbnjkdfelpikedbjhcdbpbjdfphnl |
| Официальный URL | https://chromewebstore.google.com/detail/yapi-mock-plugin/hmilbnjkdfelpikedbjhcdbpbjdfphnl |
| Описание | Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code |
| Размер файла | 148 KB |
| Количество установок | 336 |
| Текущая Версия | 1.0.5 |
| Последнее Обновление | 2020-05-27 |
| Дата публикации | 2020-05-26 |
| Разработчик | kaku_fe |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/JackyTianer/yapi-mock-proxy-plugin |
| URL страницы помощи | https://github.com/JackyTianer/yapi-mock-proxy-plugin |
| Поддерживаемые языки | en,zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"version": "1.0.5",
"manifest_version": 2,
"default_locale": "zh_CN",
"description": "__MSG_appDescription__",
"icons": {
"16": "icons\/icon-16.png",
"128": "icons\/icon-128.png"
},
"background": {
"scripts": [
"scripts\/background.js"
]
},
"permissions": [
"storage",
"webRequest",
"webRequestBlocking",
"unlimitedStorage",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"options_ui": {
"page": "options.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"scripts\/contentscript.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"browser_action": {
"default_icon": {
"19": "icons\/icon-19.png",
"38": "icons\/icon-38.png"
},
"default_title": "Extension Boilerplate",
"default_popup": "popup.html"
},
"web_accessible_resources": []
} | |