ElementHistory
See what code created or updated a DOM element
什麼是ElementHistory?
ElementHistory是由Matt Zeunert開發的Chrome擴展程式,該擴展的主要功能是“See what code created or updated a DOM element”。
擴展截圖
下載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 |
ID | idhhmihgigngdppfpklkdklfaikkecge |
官方網址 | 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" ] } |