├── .babelrc ├── .gitignore ├── README.md ├── assets ├── OpenSans-Light.ttf ├── OpenSans-Regular.ttf ├── icon_128_detected.png ├── icon_128_disabled.png ├── icon_32_detected.png ├── icon_32_disabled.png ├── icon_48_detected.png ├── icon_48_disabled.png ├── icon_64_detected.png ├── icon_64_disabled.png └── readme │ └── ecsy-header.png ├── dist └── panel.bundle.js ├── ideas.md ├── manifest.json ├── package.json ├── src ├── app │ ├── ECSYBindings.js │ ├── Remote.js │ ├── components │ │ ├── Checkbox.js │ │ ├── Component.js │ │ ├── Components.js │ │ ├── DeferredRemovalStep.js │ │ ├── ElementStats.js │ │ ├── Entities.js │ │ ├── Icon.js │ │ ├── Panel.css │ │ ├── Panel.js │ │ ├── Queries.js │ │ ├── Query.js │ │ ├── SimpleTimeSeriesChart.js │ │ ├── SmoothieChart.js │ │ ├── StyledComponents.js │ │ ├── System.js │ │ ├── SystemQueries.js │ │ └── Systems.js │ ├── index.html │ ├── panel.js │ ├── style.css │ ├── utils │ │ ├── Events.js │ │ └── newId.js │ └── vendor │ │ ├── peer.min.js │ │ └── smoothie.js ├── content │ └── index.js └── extension │ ├── background.html │ ├── background.js │ ├── contentScript.js │ ├── devtools.html │ ├── devtools.js │ └── popups │ ├── detected.html │ ├── disabled.html │ └── popup.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/README.md -------------------------------------------------------------------------------- /assets/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/assets/OpenSans-Light.ttf -------------------------------------------------------------------------------- /assets/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/assets/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /assets/icon_128_detected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/assets/icon_128_detected.png -------------------------------------------------------------------------------- /assets/icon_128_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/assets/icon_128_disabled.png -------------------------------------------------------------------------------- /assets/icon_32_detected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/assets/icon_32_detected.png -------------------------------------------------------------------------------- /assets/icon_32_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/assets/icon_32_disabled.png -------------------------------------------------------------------------------- /assets/icon_48_detected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/assets/icon_48_detected.png -------------------------------------------------------------------------------- /assets/icon_48_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/assets/icon_48_disabled.png -------------------------------------------------------------------------------- /assets/icon_64_detected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/assets/icon_64_detected.png -------------------------------------------------------------------------------- /assets/icon_64_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/assets/icon_64_disabled.png -------------------------------------------------------------------------------- /assets/readme/ecsy-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/assets/readme/ecsy-header.png -------------------------------------------------------------------------------- /dist/panel.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/dist/panel.bundle.js -------------------------------------------------------------------------------- /ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/ideas.md -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/package.json -------------------------------------------------------------------------------- /src/app/ECSYBindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/app/ECSYBindings.js -------------------------------------------------------------------------------- /src/app/Remote.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/Checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/app/components/Checkbox.js -------------------------------------------------------------------------------- /src/app/components/Component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/app/components/Component.js -------------------------------------------------------------------------------- /src/app/components/Components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/app/components/Components.js -------------------------------------------------------------------------------- /src/app/components/DeferredRemovalStep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/app/components/DeferredRemovalStep.js -------------------------------------------------------------------------------- /src/app/components/ElementStats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/app/components/ElementStats.js -------------------------------------------------------------------------------- /src/app/components/Entities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/app/components/Entities.js -------------------------------------------------------------------------------- /src/app/components/Icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/app/components/Icon.js -------------------------------------------------------------------------------- /src/app/components/Panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/app/components/Panel.css -------------------------------------------------------------------------------- /src/app/components/Panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/app/components/Panel.js -------------------------------------------------------------------------------- /src/app/components/Queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/app/components/Queries.js -------------------------------------------------------------------------------- /src/app/components/Query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/app/components/Query.js -------------------------------------------------------------------------------- /src/app/components/SimpleTimeSeriesChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/app/components/SimpleTimeSeriesChart.js -------------------------------------------------------------------------------- /src/app/components/SmoothieChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/app/components/SmoothieChart.js -------------------------------------------------------------------------------- /src/app/components/StyledComponents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/app/components/StyledComponents.js -------------------------------------------------------------------------------- /src/app/components/System.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/app/components/System.js -------------------------------------------------------------------------------- /src/app/components/SystemQueries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/app/components/SystemQueries.js -------------------------------------------------------------------------------- /src/app/components/Systems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/app/components/Systems.js -------------------------------------------------------------------------------- /src/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/app/index.html -------------------------------------------------------------------------------- /src/app/panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/app/panel.js -------------------------------------------------------------------------------- /src/app/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/app/style.css -------------------------------------------------------------------------------- /src/app/utils/Events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/app/utils/Events.js -------------------------------------------------------------------------------- /src/app/utils/newId.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/app/utils/newId.js -------------------------------------------------------------------------------- /src/app/vendor/peer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/app/vendor/peer.min.js -------------------------------------------------------------------------------- /src/app/vendor/smoothie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/app/vendor/smoothie.js -------------------------------------------------------------------------------- /src/content/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/content/index.js -------------------------------------------------------------------------------- /src/extension/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/extension/background.html -------------------------------------------------------------------------------- /src/extension/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/extension/background.js -------------------------------------------------------------------------------- /src/extension/contentScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/extension/contentScript.js -------------------------------------------------------------------------------- /src/extension/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/extension/devtools.html -------------------------------------------------------------------------------- /src/extension/devtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/extension/devtools.js -------------------------------------------------------------------------------- /src/extension/popups/detected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/extension/popups/detected.html -------------------------------------------------------------------------------- /src/extension/popups/disabled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/extension/popups/disabled.html -------------------------------------------------------------------------------- /src/extension/popups/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/src/extension/popups/popup.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecsyjs/ecsy-devtools/HEAD/webpack.config.js --------------------------------------------------------------------------------