YAPI MOCK Plugin

Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code

Co to jest YAPI MOCK Plugin?

YAPI MOCK Plugin to rozszerzenie Chrome opracowane przez kaku_fe, a jego główną funkcją jest „Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia YAPI MOCK Plugin

Pobierz pliki rozszerzeń YAPI MOCK Plugin w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa YAPI MOCK Plugin YAPI MOCK Plugin
ID hmilbnjkdfelpikedbjhcdbpbjdfphnl
Oficjalny URL https://chromewebstore.google.com/detail/yapi-mock-plugin/hmilbnjkdfelpikedbjhcdbpbjdfphnl
Opis Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code
Rozmiar pliku 148 KB
Liczba instalacji 336
Aktualna Wersja 1.0.5
Ostatnia Aktualizacja 2020-05-27
Data Publikacji 2020-05-26
Deweloper kaku_fe
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/JackyTianer/yapi-mock-proxy-plugin
Adres URL Strony Pomocy https://github.com/JackyTianer/yapi-mock-proxy-plugin
Obsługiwane Języki 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": []
}