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 là gì?

YAPI MOCK Plugin là một tiện ích mở rộng Chrome được phát triển bởi kaku_fe, và tính năng chính của nó là "Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng YAPI MOCK Plugin

Tải xuống các tệp mở rộng YAPI MOCK Plugin dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên YAPI MOCK Plugin YAPI MOCK Plugin
ID hmilbnjkdfelpikedbjhcdbpbjdfphnl
URL Chính Thức https://chromewebstore.google.com/detail/yapi-mock-plugin/hmilbnjkdfelpikedbjhcdbpbjdfphnl
Mô tả Quickly simulate the interface defined on platform A, to achieve plug-ins compatible with all projects without modifying the code
Kích Thước Tệp 148 KB
Số Lần Cài Đặt 336
Phiên Bản Hiện Tại 1.0.5
Cập Nhật Lần Cuối 2020-05-27
Ngày Phát Hành 2020-05-26
Nhà Phát Triển kaku_fe
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/JackyTianer/yapi-mock-proxy-plugin
URL Trang Trợ Giúp https://github.com/JackyTianer/yapi-mock-proxy-plugin
Ngôn Ngữ Được Hỗ Trợ 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": []
}