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

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

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

Visual Inspector(前端重构+视觉走查辅助工具) adalah ekstensi Chrome yang dikembangkan oleh paul, dan fitur utamanya adalah "A helper tool for fast front-end development and visual inspection.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

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

Unduh file ekstensi Visual Inspector(前端重构+视觉走查辅助工具) dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Visual Inspector(前端重构+视觉走查辅助工具) Visual Inspector(前端重构+视觉走查辅助工具)
ID jgimcbonbekgeahallgcmiibdidjeeim
URL Resmi 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
Deskripsi A helper tool for fast front-end development and visual inspection.
Ukuran File 174 KB
Jumlah Instalasi 3,325
Versi Saat Ini 1.6.8
Terakhir Diperbarui 2022-07-26
Tanggal Publikasi 2020-04-04
Penilaian 4.30/5 Total 10 Penilaian
Pengembang paul
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}