YAPI MOCK Plugin

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

Qu'est-ce que YAPI MOCK Plugin ?

YAPI MOCK Plugin est une extension Chrome développée par kaku_fe, et sa fonction principale est "Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension YAPI MOCK Plugin

Téléchargez les fichiers d'extension YAPI MOCK Plugin au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom YAPI MOCK Plugin YAPI MOCK Plugin
ID hmilbnjkdfelpikedbjhcdbpbjdfphnl
URL Officiel https://chromewebstore.google.com/detail/yapi-mock-plugin/hmilbnjkdfelpikedbjhcdbpbjdfphnl
Description Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code
Taille du Fichier 148 KB
Nombre d'Installations 336
Version Actuelle 1.0.5
Dernière Mise à Jour 2020-05-27
Date de Publication 2020-05-26
Développeur kaku_fe
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/JackyTianer/yapi-mock-proxy-plugin
URL de la Page d'Aide https://github.com/JackyTianer/yapi-mock-proxy-plugin
Langues Prises en Charge 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": []
}