YAPI MOCK Plugin

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

Hvad er YAPI MOCK Plugin?

YAPI MOCK Plugin er en Chrome-udvidelse udviklet af kaku_fe, og dens hovedfunktion er "Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download YAPI MOCK Plugin-udvidelses-CRX-fil

Download YAPI MOCK Plugin-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn YAPI MOCK Plugin YAPI MOCK Plugin
ID hmilbnjkdfelpikedbjhcdbpbjdfphnl
Officiel URL https://chromewebstore.google.com/detail/yapi-mock-plugin/hmilbnjkdfelpikedbjhcdbpbjdfphnl
Beskrivelse Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code
Filstørrelse 148 KB
Antal Installationer 336
Nuværende Version 1.0.5
Senest Opdateret 2020-05-27
Udgivelsesdato 2020-05-26
Udvikler kaku_fe
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/JackyTianer/yapi-mock-proxy-plugin
Hjælpeside-URL https://github.com/JackyTianer/yapi-mock-proxy-plugin
Understøttede Sprog 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": []
}