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

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

ما هو Visual Inspector(前端重构+视觉走查辅助工具)؟

Visual Inspector(前端重构+视觉走查辅助工具) هو إضافة Chrome تم تطويرها بواسطة paul، والميزة الرئيسية لها هي "A helper tool for fast front-end development and visual inspection.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Visual Inspector(前端重构+视觉走查辅助工具)

قم بتنزيل ملفات الامتداد Visual Inspector(前端重构+视觉走查辅助工具) بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        ## 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"
    ]
}