├── .gitignore ├── README.md ├── promo-material ├── promo-icon.png ├── promo-large.png ├── promo-large.psd ├── promo-screenshot-1.png └── promo-screenshot-2.png └── src ├── .eslintignore ├── .eslintrc ├── background.js ├── component-stats.html ├── component-stats.js ├── d3.js ├── devtools.html ├── devtools.js ├── dom-treemap.html ├── dom-treemap.js ├── icon-list-up.svg ├── icon.svg ├── icon128.png ├── icon16.png ├── icon48.png └── manifest.json /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | **/*.zip 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schepp/dom-treemap-devtools-extension/HEAD/README.md -------------------------------------------------------------------------------- /promo-material/promo-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schepp/dom-treemap-devtools-extension/HEAD/promo-material/promo-icon.png -------------------------------------------------------------------------------- /promo-material/promo-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schepp/dom-treemap-devtools-extension/HEAD/promo-material/promo-large.png -------------------------------------------------------------------------------- /promo-material/promo-large.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schepp/dom-treemap-devtools-extension/HEAD/promo-material/promo-large.psd -------------------------------------------------------------------------------- /promo-material/promo-screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schepp/dom-treemap-devtools-extension/HEAD/promo-material/promo-screenshot-1.png -------------------------------------------------------------------------------- /promo-material/promo-screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schepp/dom-treemap-devtools-extension/HEAD/promo-material/promo-screenshot-2.png -------------------------------------------------------------------------------- /src/.eslintignore: -------------------------------------------------------------------------------- 1 | src/js/polyfills -------------------------------------------------------------------------------- /src/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schepp/dom-treemap-devtools-extension/HEAD/src/.eslintrc -------------------------------------------------------------------------------- /src/background.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/component-stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schepp/dom-treemap-devtools-extension/HEAD/src/component-stats.html -------------------------------------------------------------------------------- /src/component-stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schepp/dom-treemap-devtools-extension/HEAD/src/component-stats.js -------------------------------------------------------------------------------- /src/d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schepp/dom-treemap-devtools-extension/HEAD/src/d3.js -------------------------------------------------------------------------------- /src/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schepp/dom-treemap-devtools-extension/HEAD/src/devtools.html -------------------------------------------------------------------------------- /src/devtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schepp/dom-treemap-devtools-extension/HEAD/src/devtools.js -------------------------------------------------------------------------------- /src/dom-treemap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schepp/dom-treemap-devtools-extension/HEAD/src/dom-treemap.html -------------------------------------------------------------------------------- /src/dom-treemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schepp/dom-treemap-devtools-extension/HEAD/src/dom-treemap.js -------------------------------------------------------------------------------- /src/icon-list-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schepp/dom-treemap-devtools-extension/HEAD/src/icon-list-up.svg -------------------------------------------------------------------------------- /src/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schepp/dom-treemap-devtools-extension/HEAD/src/icon.svg -------------------------------------------------------------------------------- /src/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schepp/dom-treemap-devtools-extension/HEAD/src/icon128.png -------------------------------------------------------------------------------- /src/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schepp/dom-treemap-devtools-extension/HEAD/src/icon16.png -------------------------------------------------------------------------------- /src/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schepp/dom-treemap-devtools-extension/HEAD/src/icon48.png -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schepp/dom-treemap-devtools-extension/HEAD/src/manifest.json --------------------------------------------------------------------------------