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

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

¿Qué es Visual Inspector(前端重构+视觉走查辅助工具)?

Visual Inspector(前端重构+视觉走查辅助工具) es una extensión de Chrome desarrollada por paul, y su función principal es "A helper tool for fast front-end development and visual inspection.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Visual Inspector(前端重构+视觉走查辅助工具)

Descarga archivos de extensión Visual Inspector(前端重构+视觉走查辅助工具) en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        ## 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 :)                    

Información Básica de la Extensión

Nombre Visual Inspector(前端重构+视觉走查辅助工具) Visual Inspector(前端重构+视觉走查辅助工具)
ID jgimcbonbekgeahallgcmiibdidjeeim
URL Oficial 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
Descripción A helper tool for fast front-end development and visual inspection.
Tamaño del Archivo 174 KB
Cantidad de Instalaciones 3,325
Versión Actual 1.6.8
Última Actualización 2022-07-26
Fecha de Publicación 2020-04-04
Calificación 4.30/5 Total de 10 Calificaciones
Desarrollador paul
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    ]
}