ElementHistory

See what code created or updated a DOM element

什么是ElementHistory?

ElementHistory是由Matt Zeunert开发的Chrome扩展程序,该扩展的主要功能是“See what code created or updated a DOM element”。

扩展截图

screenshot
screenshot

下载ElementHistory扩展crx文件

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

扩展使用说明

                        Turn on element history in a tab by clicking the ElementHistory icon. Reload the page if you want to track the whole history.

More information: https://github.com/mattzeunert/ElementHistory

Report issues here: https://github.com/mattzeunert/ElementHistory/issues                    

扩展基本信息

名称 ElementHistory ElementHistory
ID idhhmihgigngdppfpklkdklfaikkecge
官方URL https://chromewebstore.google.com/detail/elementhistory/idhhmihgigngdppfpklkdklfaikkecge
简介 See what code created or updated a DOM element
文件大小 281 KB
安装次数 47
当前版本 1.6
更新时间 2017-11-15
上架时间 2017-11-15
评分 3.00/5 共2次评分
开发者 Matt Zeunert
付费类型 free
扩展官网 https://github.com/mattzeunert/ElementHistory
帮助页面URL https://github.com/mattzeunert/ElementHistory/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ElementHistory",
    "description": "See what code created or updated a DOM element",
    "version": "1.6",
    "browser_action": [],
    "icons": {
        "64": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "devtools_page": "devtools.html",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "trackHistory.js"
    ]
}