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 με φίλους για εύκολη εγκατάσταση των επεκτάσεων 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"
    ]
}