├── .babelrc ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── README.md ├── app ├── css │ └── jsonview.css ├── devtools.html ├── img │ └── icon.png ├── js │ ├── background.js │ ├── content-script.js │ ├── devtools.js │ ├── jsonview.js │ └── sprite-element.js ├── manifest.json └── sidebar.html ├── package.json └── src ├── background.js ├── content-script.js ├── devtools.js └── sprite-element.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env"] 3 | } -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | .git 2 | node_modules 3 | build 4 | dist 5 | docs/js 6 | script 7 | lib 8 | app -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spritejs/sprite-devtools/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spritejs/sprite-devtools/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spritejs/sprite-devtools/HEAD/README.md -------------------------------------------------------------------------------- /app/css/jsonview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spritejs/sprite-devtools/HEAD/app/css/jsonview.css -------------------------------------------------------------------------------- /app/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spritejs/sprite-devtools/HEAD/app/devtools.html -------------------------------------------------------------------------------- /app/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spritejs/sprite-devtools/HEAD/app/img/icon.png -------------------------------------------------------------------------------- /app/js/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spritejs/sprite-devtools/HEAD/app/js/background.js -------------------------------------------------------------------------------- /app/js/content-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spritejs/sprite-devtools/HEAD/app/js/content-script.js -------------------------------------------------------------------------------- /app/js/devtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spritejs/sprite-devtools/HEAD/app/js/devtools.js -------------------------------------------------------------------------------- /app/js/jsonview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spritejs/sprite-devtools/HEAD/app/js/jsonview.js -------------------------------------------------------------------------------- /app/js/sprite-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spritejs/sprite-devtools/HEAD/app/js/sprite-element.js -------------------------------------------------------------------------------- /app/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spritejs/sprite-devtools/HEAD/app/manifest.json -------------------------------------------------------------------------------- /app/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spritejs/sprite-devtools/HEAD/app/sidebar.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spritejs/sprite-devtools/HEAD/package.json -------------------------------------------------------------------------------- /src/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spritejs/sprite-devtools/HEAD/src/background.js -------------------------------------------------------------------------------- /src/content-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spritejs/sprite-devtools/HEAD/src/content-script.js -------------------------------------------------------------------------------- /src/devtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spritejs/sprite-devtools/HEAD/src/devtools.js -------------------------------------------------------------------------------- /src/sprite-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spritejs/sprite-devtools/HEAD/src/sprite-element.js --------------------------------------------------------------------------------