ElementHistory
See what code created or updated a DOM element
Co to jest ElementHistory?
ElementHistory to rozszerzenie Chrome opracowane przez Matt Zeunert, a jego główną funkcją jest „See what code created or updated a DOM element”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia ElementHistory
Pobierz pliki rozszerzeń ElementHistory w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | ElementHistory |
ID | idhhmihgigngdppfpklkdklfaikkecge |
Oficjalny URL | https://chromewebstore.google.com/detail/elementhistory/idhhmihgigngdppfpklkdklfaikkecge |
Opis | See what code created or updated a DOM element |
Rozmiar pliku | 281 KB |
Liczba instalacji | 47 |
Aktualna Wersja | 1.6 |
Ostatnia Aktualizacja | 2017-11-15 |
Data Publikacji | 2017-11-15 |
Ocena | 3.00/5 Łącznie 2 Oceny |
Deweloper | Matt Zeunert |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/mattzeunert/ElementHistory |
Adres URL Strony Pomocy | https://github.com/mattzeunert/ElementHistory/issues |
Obsługiwane Języki | 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" ] } |