Elements Viewer

See your elements height and width on webpage

什么是Elements Viewer?

Elements Viewer是由Seke Nikola开发的Chrome扩展程序,该扩展的主要功能是“See your elements height and width on webpage”。

扩展截图

screenshot

下载Elements Viewer扩展crx文件

下载Elements Viewer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Element Viewer is a simple extension that helps front-end developers and designers to have a better visual representation of how elements are position on a web page.

Usage: Just press extension icon to toggle on and off.

Inspired by the tip from Gajus Kuizinas (https://github.com/gajus)                    

扩展基本信息

名称 Elements Viewer Elements Viewer
ID okglkbdhaneaglfmkmbkmglobmondaoc
官方URL https://chromewebstore.google.com/detail/elements-viewer/okglkbdhaneaglfmkmbkmglobmondaoc
简介 See your elements height and width on webpage
文件大小 5.61 KB
安装次数 107
当前版本 1
更新时间 2019-09-12
上架时间 2019-09-12
评分 5.00/5 共3次评分
开发者 Seke Nikola
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Elements Viewer",
    "description": "See your elements height and width on webpage",
    "version": "1",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "elements-viewer.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Elements Viewer"
    },
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "manifest_version": 2
}