ElementHistory
See what code created or updated a DOM element
Vad är ElementHistory?
ElementHistory är en Chrome-tillägg utvecklad av Matt Zeunert, och dess huvudfunktion är "See what code created or updated a DOM element".
Tilläggsskärmbilder
Ladda ner ElementHistory-förlängningens CRX-fil
Ladda ner ElementHistory-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | ElementHistory |
ID | idhhmihgigngdppfpklkdklfaikkecge |
Officiell webbadress | https://chromewebstore.google.com/detail/elementhistory/idhhmihgigngdppfpklkdklfaikkecge |
Beskrivning | See what code created or updated a DOM element |
Filstorlek | 281 KB |
Antal Installationer | 47 |
Aktuell Version | 1.6 |
Senast Uppdaterad | 2017-11-15 |
Publiceringsdatum | 2017-11-15 |
Betyg | 3.00/5 Totalt 2 Betyg |
Utvecklare | Matt Zeunert |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/mattzeunert/ElementHistory |
Hjälpsida URL | https://github.com/mattzeunert/ElementHistory/issues |
Stödda Språk | 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" ] } |