├── .circleci └── config.yml ├── .editorconfig ├── .github ├── CONTRIBUTING.md └── ISSUE_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── STYLE_GUIDE.md ├── docs ├── assets │ ├── logo.jpg │ ├── screenshot1.jpg │ ├── screenshot2.jpg │ └── screenshot3.jpg └── circleci.md ├── package.json ├── src ├── components.d.ts ├── components │ ├── arrow │ │ ├── arrow.pcss │ │ └── arrow.tsx │ ├── category │ │ ├── category.pcss │ │ └── category.tsx │ ├── item-value │ │ ├── item-value.pcss │ │ └── item-value.tsx │ ├── item │ │ ├── item.pcss │ │ └── item.tsx │ ├── logo │ │ ├── logo.pcss │ │ └── logo.tsx │ ├── main │ │ ├── main.pcss │ │ └── main.tsx │ ├── message │ │ ├── message.pcss │ │ └── message.tsx │ └── refresh │ │ ├── refresh.pcss │ │ └── refresh.tsx ├── decorators │ └── autobind.ts ├── helpers │ ├── background-script.ts │ ├── checker.ts │ ├── content-script.ts │ ├── declarations.ts │ ├── injector.ts │ ├── scout.ts │ └── tsconfig.json ├── images │ ├── favicon.ico │ ├── stencil-logo-128x128.png │ ├── stencil-logo-16x16.png │ ├── stencil-logo-48x48.png │ ├── stencil-logo-disabled-128x128.png │ ├── stencil-logo-disabled-16x16.png │ └── stencil-logo-disabled-48x48.png ├── index.html ├── index.ts ├── statics │ ├── devtools.html │ ├── devtools.js │ ├── disabled.html │ ├── enabled.html │ └── manifest.json └── styles │ └── global.css ├── stencil.config.js ├── stylelint.config.js ├── tsconfig.json └── tslint.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/README.md -------------------------------------------------------------------------------- /STYLE_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/STYLE_GUIDE.md -------------------------------------------------------------------------------- /docs/assets/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/docs/assets/logo.jpg -------------------------------------------------------------------------------- /docs/assets/screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/docs/assets/screenshot1.jpg -------------------------------------------------------------------------------- /docs/assets/screenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/docs/assets/screenshot2.jpg -------------------------------------------------------------------------------- /docs/assets/screenshot3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/docs/assets/screenshot3.jpg -------------------------------------------------------------------------------- /docs/circleci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/docs/circleci.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/package.json -------------------------------------------------------------------------------- /src/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/components.d.ts -------------------------------------------------------------------------------- /src/components/arrow/arrow.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/components/arrow/arrow.pcss -------------------------------------------------------------------------------- /src/components/arrow/arrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/components/arrow/arrow.tsx -------------------------------------------------------------------------------- /src/components/category/category.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/components/category/category.pcss -------------------------------------------------------------------------------- /src/components/category/category.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/components/category/category.tsx -------------------------------------------------------------------------------- /src/components/item-value/item-value.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/components/item-value/item-value.pcss -------------------------------------------------------------------------------- /src/components/item-value/item-value.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/components/item-value/item-value.tsx -------------------------------------------------------------------------------- /src/components/item/item.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/components/item/item.pcss -------------------------------------------------------------------------------- /src/components/item/item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/components/item/item.tsx -------------------------------------------------------------------------------- /src/components/logo/logo.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/components/logo/logo.pcss -------------------------------------------------------------------------------- /src/components/logo/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/components/logo/logo.tsx -------------------------------------------------------------------------------- /src/components/main/main.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/components/main/main.pcss -------------------------------------------------------------------------------- /src/components/main/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/components/main/main.tsx -------------------------------------------------------------------------------- /src/components/message/message.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/components/message/message.pcss -------------------------------------------------------------------------------- /src/components/message/message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/components/message/message.tsx -------------------------------------------------------------------------------- /src/components/refresh/refresh.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/components/refresh/refresh.pcss -------------------------------------------------------------------------------- /src/components/refresh/refresh.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/components/refresh/refresh.tsx -------------------------------------------------------------------------------- /src/decorators/autobind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/decorators/autobind.ts -------------------------------------------------------------------------------- /src/helpers/background-script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/helpers/background-script.ts -------------------------------------------------------------------------------- /src/helpers/checker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/helpers/checker.ts -------------------------------------------------------------------------------- /src/helpers/content-script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/helpers/content-script.ts -------------------------------------------------------------------------------- /src/helpers/declarations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/helpers/declarations.ts -------------------------------------------------------------------------------- /src/helpers/injector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/helpers/injector.ts -------------------------------------------------------------------------------- /src/helpers/scout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/helpers/scout.ts -------------------------------------------------------------------------------- /src/helpers/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/helpers/tsconfig.json -------------------------------------------------------------------------------- /src/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/images/favicon.ico -------------------------------------------------------------------------------- /src/images/stencil-logo-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/images/stencil-logo-128x128.png -------------------------------------------------------------------------------- /src/images/stencil-logo-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/images/stencil-logo-16x16.png -------------------------------------------------------------------------------- /src/images/stencil-logo-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/images/stencil-logo-48x48.png -------------------------------------------------------------------------------- /src/images/stencil-logo-disabled-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/images/stencil-logo-disabled-128x128.png -------------------------------------------------------------------------------- /src/images/stencil-logo-disabled-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/images/stencil-logo-disabled-16x16.png -------------------------------------------------------------------------------- /src/images/stencil-logo-disabled-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/images/stencil-logo-disabled-48x48.png -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './components'; 2 | -------------------------------------------------------------------------------- /src/statics/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/statics/devtools.html -------------------------------------------------------------------------------- /src/statics/devtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/statics/devtools.js -------------------------------------------------------------------------------- /src/statics/disabled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/statics/disabled.html -------------------------------------------------------------------------------- /src/statics/enabled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/statics/enabled.html -------------------------------------------------------------------------------- /src/statics/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/statics/manifest.json -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /stencil.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/stencil.config.js -------------------------------------------------------------------------------- /stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/stylelint.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-inspector/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "tslint-ionic-rules" 3 | } 4 | --------------------------------------------------------------------------------