ElementHistory
See what code created or updated a DOM element
What is ElementHistory?
ElementHistory is a Chrome extension developed by Matt Zeunert, and its main feature is "See what code created or updated a DOM element".
Extension Screenshots
Download ElementHistory Extension CRX File
Download ElementHistory extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | ElementHistory |
ID | idhhmihgigngdppfpklkdklfaikkecge |
Official URL | https://chromewebstore.google.com/detail/elementhistory/idhhmihgigngdppfpklkdklfaikkecge |
Description | See what code created or updated a DOM element |
File Size | 281 KB |
Installation Count | 47 |
Current Version | 1.6 |
Last Updated | 2017-11-15 |
Publish Date | 2017-11-15 |
Rating | 3.00/5 Total 2 Ratings |
Developer | Matt Zeunert |
Payment Type | free |
Extension Website | https://github.com/mattzeunert/ElementHistory |
Help Page URL | https://github.com/mattzeunert/ElementHistory/issues |
Supported Languages | 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" ] } |