├── .gitignore ├── LICENSE ├── README.md ├── chrome-profile-view.py ├── js ├── d3.LICENSE ├── d3.v7.min.js ├── jquery-3.7.1.min.js ├── jquery.LICENSE └── table_utils.js ├── requirements.txt ├── style └── main.css └── views ├── cache.tpl ├── footer.tpl ├── header.tpl ├── history.tpl ├── historychain.tpl ├── index.tpl ├── indexeddb.tpl ├── indexeddb_databases.tpl ├── indexeddb_hosts_script.tpl ├── indexeddb_records.tpl ├── indexeddb_single_record.tpl ├── localstorage.tpl ├── localstorage_hosts_script.tpl ├── localstorage_records.tpl ├── sessionstorage.tpl ├── sessionstorage_hosts_script.tpl └── sessionstorage_records.tpl /.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/README.md -------------------------------------------------------------------------------- /chrome-profile-view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/chrome-profile-view.py -------------------------------------------------------------------------------- /js/d3.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/js/d3.LICENSE -------------------------------------------------------------------------------- /js/d3.v7.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/js/d3.v7.min.js -------------------------------------------------------------------------------- /js/jquery-3.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/js/jquery-3.7.1.min.js -------------------------------------------------------------------------------- /js/jquery.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/js/jquery.LICENSE -------------------------------------------------------------------------------- /js/table_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/js/table_utils.js -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/requirements.txt -------------------------------------------------------------------------------- /style/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/style/main.css -------------------------------------------------------------------------------- /views/cache.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/views/cache.tpl -------------------------------------------------------------------------------- /views/footer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/views/footer.tpl -------------------------------------------------------------------------------- /views/header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/views/header.tpl -------------------------------------------------------------------------------- /views/history.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/views/history.tpl -------------------------------------------------------------------------------- /views/historychain.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/views/historychain.tpl -------------------------------------------------------------------------------- /views/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/views/index.tpl -------------------------------------------------------------------------------- /views/indexeddb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/views/indexeddb.tpl -------------------------------------------------------------------------------- /views/indexeddb_databases.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/views/indexeddb_databases.tpl -------------------------------------------------------------------------------- /views/indexeddb_hosts_script.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/views/indexeddb_hosts_script.tpl -------------------------------------------------------------------------------- /views/indexeddb_records.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/views/indexeddb_records.tpl -------------------------------------------------------------------------------- /views/indexeddb_single_record.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/views/indexeddb_single_record.tpl -------------------------------------------------------------------------------- /views/localstorage.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/views/localstorage.tpl -------------------------------------------------------------------------------- /views/localstorage_hosts_script.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/views/localstorage_hosts_script.tpl -------------------------------------------------------------------------------- /views/localstorage_records.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/views/localstorage_records.tpl -------------------------------------------------------------------------------- /views/sessionstorage.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/views/sessionstorage.tpl -------------------------------------------------------------------------------- /views/sessionstorage_hosts_script.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/views/sessionstorage_hosts_script.tpl -------------------------------------------------------------------------------- /views/sessionstorage_records.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cclgroupltd/chrome-profile-view/HEAD/views/sessionstorage_records.tpl --------------------------------------------------------------------------------