├── .clang-format ├── .eslintrc ├── .github └── PULL_REQUEST_TEMPLATE ├── .gitignore ├── .travis.yml ├── .vscode └── settings.json ├── CHANGELOG.md ├── README.md ├── bower.json ├── gulpfile.js ├── icon.png ├── manifest.json ├── package.json ├── screenshot.png ├── src ├── background.js ├── content-script.js ├── devtools.html ├── document-context │ └── measure-custom-elements.ts ├── elements │ ├── stats-item │ │ └── stats-item.html │ └── stats-table │ │ └── stats-table.html └── polymer-panel.html ├── test ├── document-context │ ├── measure-custom-elements.html │ ├── messes-with-Polymer.html │ └── modded-polymer.html └── index.html └── tsconfig.json /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerLabs/polydev/HEAD/.clang-format -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerLabs/polydev/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerLabs/polydev/HEAD/.github/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerLabs/polydev/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerLabs/polydev/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerLabs/polydev/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerLabs/polydev/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerLabs/polydev/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerLabs/polydev/HEAD/bower.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerLabs/polydev/HEAD/gulpfile.js -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerLabs/polydev/HEAD/icon.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerLabs/polydev/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerLabs/polydev/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerLabs/polydev/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerLabs/polydev/HEAD/src/background.js -------------------------------------------------------------------------------- /src/content-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerLabs/polydev/HEAD/src/content-script.js -------------------------------------------------------------------------------- /src/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerLabs/polydev/HEAD/src/devtools.html -------------------------------------------------------------------------------- /src/document-context/measure-custom-elements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerLabs/polydev/HEAD/src/document-context/measure-custom-elements.ts -------------------------------------------------------------------------------- /src/elements/stats-item/stats-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerLabs/polydev/HEAD/src/elements/stats-item/stats-item.html -------------------------------------------------------------------------------- /src/elements/stats-table/stats-table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerLabs/polydev/HEAD/src/elements/stats-table/stats-table.html -------------------------------------------------------------------------------- /src/polymer-panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerLabs/polydev/HEAD/src/polymer-panel.html -------------------------------------------------------------------------------- /test/document-context/measure-custom-elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerLabs/polydev/HEAD/test/document-context/measure-custom-elements.html -------------------------------------------------------------------------------- /test/document-context/messes-with-Polymer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerLabs/polydev/HEAD/test/document-context/messes-with-Polymer.html -------------------------------------------------------------------------------- /test/document-context/modded-polymer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerLabs/polydev/HEAD/test/document-context/modded-polymer.html -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerLabs/polydev/HEAD/test/index.html -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerLabs/polydev/HEAD/tsconfig.json --------------------------------------------------------------------------------