Visual Inspector(前端重构+视觉走查辅助工具)

A helper tool for fast front-end development and visual inspection.

什么是Visual Inspector(前端重构+视觉走查辅助工具)?

Visual Inspector(前端重构+视觉走查辅助工具)是由paul开发的Chrome扩展程序,该扩展的主要功能是“A helper tool for fast front-end development and visual inspection.”。

扩展截图

screenshot
screenshot
screenshot

下载Visual Inspector(前端重构+视觉走查辅助工具)扩展crx文件

下载Visual Inspector(前端重构+视觉走查辅助工具)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        ## Visual Inspector
> This is a chrome plugin to help front-end engineers and designers to quickly locate differences between design mockups and web pages. as well as front-end engineers UI self-examination, reducing the cost of communication with designers.

> You can modify the `size`, `position`, `transparency`, `mix mode` of the design manuscript at will, to facilitate UI comparison of various design styles.

> If you are doing page refactoring, the real-time function can be easily restored to the state before the page is refreshed after the page is refreshed (such as the size, position, transparency, etc. of the design draft).

> At the same time, if you do not need to move the stretch design, it is recommended to open the freeze function, so that the design will no longer respond to mouse events, can not stretch and drag, and will not affect the interactive function of the page itself.

> Preset shortcuts for frequently used commands for easier operation and comparison

### New version(1.3.9+) removed ruler. for those who need this functionality, please install a ruler such as [better ruler](https://chrome.google.com/webstore/detail/better-ruler/ilcnadaaninblgbekoaihdhoiecaflie), which supports snapping elements.

###  shortcut keys:

- h: show or hide mockup
- f: show or hide the bottom toolbar
- d: freeze or unfreeze mockup
- Number keys (0-9): Quickly set the mockup transparency. For example, if you press 5 twice in 1 second, the transparency of the mockup will be set at 55%. If only the number key is pressed once in 1 second, such as 5, it will automatically fill 0 after one second, that is, set the mockup transparency to 50%.
- Arrow keys: Move the mockup and move 1px at a time. If you press the Shift key at the same time, you will move 10px at a time.
- Quick adaptation:
	- alt + 0: Reset
	- alt + 1: Original image size
	- alt + 2: Original size *2
	- alt + 3: Original size /2
	- alt + 4: Window Width


- If the shortcut does not work, please check if the current page's focus is inside other form controls (such as input, textarea...)? The easiest way, click on the mockup, or on the blank area in the page and to try again :)                    

扩展基本信息

名称 Visual Inspector(前端重构+视觉走查辅助工具) Visual Inspector(前端重构+视觉走查辅助工具)
ID jgimcbonbekgeahallgcmiibdidjeeim
官方URL https://chromewebstore.google.com/detail/visual-inspector%E5%89%8D%E7%AB%AF%E9%87%8D%E6%9E%84+%E8%A7%86%E8%A7%89%E8%B5%B0%E6%9F%A5/jgimcbonbekgeahallgcmiibdidjeeim
简介 A helper tool for fast front-end development and visual inspection.
文件大小 174 KB
安装次数 3,325
当前版本 1.6.8
更新时间 2022-07-26
上架时间 2020-04-04
评分 4.30/5 共10次评分
开发者 paul
电子邮箱 [email protected]
付费类型 free
支持的语言 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Visual Inspector(\u524d\u7aef\u91cd\u6784+\u89c6\u89c9\u8d70\u67e5\u8f85\u52a9\u5de5\u5177)",
    "short_name": "VI",
    "version": "1.6.8",
    "manifest_version": 2,
    "default_locale": "zh_CN",
    "author": "paul",
    "description": "__MSG_pluginDesc__",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon_gray.png",
        "default_title": "Visual Inspector",
        "default_popup": "popup_loading.html"
    },
    "permissions": [
        "unlimitedStorage",
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "content.css"
    ]
}