├── .babelrc ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── dist ├── .gitkeep ├── dom-inspector.js └── dom-inspector.min.js ├── document └── dom-inspector.gif ├── package.json ├── src ├── dom.js ├── index.d.ts ├── index.js ├── logger.js ├── style.css └── utils.js └── test ├── frame.html ├── index.html └── index.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoye-fe/dom-inspector/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoye-fe/dom-inspector/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoye-fe/dom-inspector/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoye-fe/dom-inspector/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoye-fe/dom-inspector/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoye-fe/dom-inspector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoye-fe/dom-inspector/HEAD/README.md -------------------------------------------------------------------------------- /dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/dom-inspector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoye-fe/dom-inspector/HEAD/dist/dom-inspector.js -------------------------------------------------------------------------------- /dist/dom-inspector.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoye-fe/dom-inspector/HEAD/dist/dom-inspector.min.js -------------------------------------------------------------------------------- /document/dom-inspector.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoye-fe/dom-inspector/HEAD/document/dom-inspector.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoye-fe/dom-inspector/HEAD/package.json -------------------------------------------------------------------------------- /src/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoye-fe/dom-inspector/HEAD/src/dom.js -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoye-fe/dom-inspector/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoye-fe/dom-inspector/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoye-fe/dom-inspector/HEAD/src/logger.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoye-fe/dom-inspector/HEAD/src/style.css -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoye-fe/dom-inspector/HEAD/src/utils.js -------------------------------------------------------------------------------- /test/frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoye-fe/dom-inspector/HEAD/test/frame.html -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoye-fe/dom-inspector/HEAD/test/index.html -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoye-fe/dom-inspector/HEAD/test/index.js --------------------------------------------------------------------------------