Vue.js devtools - UI Customized

Browser DevTools extension for debugging Vue.js applications.

什么是Vue.js devtools - UI Customized?

Vue.js devtools - UI Customized是由parimaanam.net开发的Chrome扩展程序,该扩展的主要功能是“Browser DevTools extension for debugging Vue.js applications.”。

扩展截图

screenshot

下载Vue.js devtools - UI Customized扩展crx文件

下载Vue.js devtools - UI Customized扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This is a custom build of Vue DevTools from the official repo with customized fonts and UI element sizes. 

This modified version uses 'Code New Roman' font as a replacement for Roboto font used in the official version. Also, the font sizes are reduced to match with the chrome dev tools standard size.                    

扩展基本信息

名称 Vue.js devtools - UI Customized Vue.js devtools - UI Customized
ID fjjopahebfkmlmkekebhacaklbhiefbn
官方URL https://chromewebstore.google.com/detail/vuejs-devtools-ui-customi/fjjopahebfkmlmkekebhacaklbhiefbn
简介 Browser DevTools extension for debugging Vue.js applications.
文件大小 1.96 MB
安装次数 8,000
当前版本 6.5.1
更新时间 2023-11-10
上架时间 2021-12-25
评分 5.00/5 共2次评分
开发者 parimaanam.net
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Vue.js devtools - UI Customized",
    "version": "6.5.1",
    "version_name": "6.5.1",
    "description": "Browser DevTools extension for debugging Vue.js applications.",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16-gray.png",
            "48": "icons\/48-gray.png",
            "128": "icons\/128-gray.png"
        },
        "default_title": "Vue Devtools",
        "default_popup": "popups\/not-found.html"
    },
    "web_accessible_resources": [
        "devtools.html",
        "devtools-background.html",
        "build\/backend.js"
    ],
    "devtools_page": "devtools-background.html",
    "background": {
        "scripts": [
            "build\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/hook.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/detector.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'"
}