YAPI MOCK Plugin

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

Cos'è YAPI MOCK Plugin?

YAPI MOCK Plugin è un'estensione di Chrome sviluppata da kaku_fe, e la sua funzione principale è "Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione YAPI MOCK Plugin

Scarica i file di estensione YAPI MOCK Plugin in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome YAPI MOCK Plugin YAPI MOCK Plugin
ID hmilbnjkdfelpikedbjhcdbpbjdfphnl
URL Ufficiale https://chromewebstore.google.com/detail/yapi-mock-plugin/hmilbnjkdfelpikedbjhcdbpbjdfphnl
Descrizione Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code
Dimensione del File 148 KB
Conteggio Installazioni 336
Versione Corrente 1.0.5
Ultimo Aggiornamento 2020-05-27
Data di Pubblicazione 2020-05-26
Sviluppatore kaku_fe
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/JackyTianer/yapi-mock-proxy-plugin
URL della Pagina di Aiuto https://github.com/JackyTianer/yapi-mock-proxy-plugin
Lingue Supportate 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": []
}