├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── renovate.json ├── renovate.properties ├── scripts │ └── rigging_pr_decorator.py └── workflows │ ├── build.yml │ └── rigging_pr_description.yaml ├── .gitignore ├── .hooks └── check_pinned_hash_dependencies.py ├── CODEOWNERS ├── LICENSE ├── README.md ├── RENOVATE_TESTING.md ├── eslintrc.ts ├── manifest.json ├── package.json ├── pre-commit-config.yaml ├── pre-commit.yml ├── prettier.rc ├── public ├── images │ ├── DOMspy.png │ ├── DOMspy.svg │ ├── DOMspy128.png │ └── DOMspy48.png └── popup.html ├── scripts ├── build.ts ├── rename-to-ts.js └── update-imports.js ├── src ├── background │ └── background.ts ├── content-scripts │ └── content.ts ├── lib │ ├── DOMAnalyzer.ts │ ├── DOMHighlighter.ts │ ├── DOMTreeAnalyzer.ts │ ├── MessageLogger.ts │ ├── TestRunner.ts │ └── logger.ts ├── popup │ ├── Popup.svelte │ ├── components │ │ ├── DOMAnalyzer.svelte │ │ ├── DOMTree.svelte │ │ ├── ElementSelector.svelte │ │ ├── MessageLogger.svelte │ │ ├── SearchBar.svelte │ │ ├── TestPanel.svelte │ │ └── TreeNode.svelte │ └── popup.ts └── types │ └── svelte.d.ts ├── svelte_config.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/renovate.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/.github/renovate.properties -------------------------------------------------------------------------------- /.github/scripts/rigging_pr_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/.github/scripts/rigging_pr_decorator.py -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/rigging_pr_description.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/.github/workflows/rigging_pr_description.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/.gitignore -------------------------------------------------------------------------------- /.hooks/check_pinned_hash_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/.hooks/check_pinned_hash_dependencies.py -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @GangGreenTemperTatum -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/README.md -------------------------------------------------------------------------------- /RENOVATE_TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/RENOVATE_TESTING.md -------------------------------------------------------------------------------- /eslintrc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/eslintrc.ts -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/package.json -------------------------------------------------------------------------------- /pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/pre-commit-config.yaml -------------------------------------------------------------------------------- /pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/pre-commit.yml -------------------------------------------------------------------------------- /prettier.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/prettier.rc -------------------------------------------------------------------------------- /public/images/DOMspy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/public/images/DOMspy.png -------------------------------------------------------------------------------- /public/images/DOMspy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/public/images/DOMspy.svg -------------------------------------------------------------------------------- /public/images/DOMspy128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/public/images/DOMspy128.png -------------------------------------------------------------------------------- /public/images/DOMspy48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/public/images/DOMspy48.png -------------------------------------------------------------------------------- /public/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/public/popup.html -------------------------------------------------------------------------------- /scripts/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/scripts/build.ts -------------------------------------------------------------------------------- /scripts/rename-to-ts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/scripts/rename-to-ts.js -------------------------------------------------------------------------------- /scripts/update-imports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/scripts/update-imports.js -------------------------------------------------------------------------------- /src/background/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/src/background/background.ts -------------------------------------------------------------------------------- /src/content-scripts/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/src/content-scripts/content.ts -------------------------------------------------------------------------------- /src/lib/DOMAnalyzer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/src/lib/DOMAnalyzer.ts -------------------------------------------------------------------------------- /src/lib/DOMHighlighter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/src/lib/DOMHighlighter.ts -------------------------------------------------------------------------------- /src/lib/DOMTreeAnalyzer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/src/lib/DOMTreeAnalyzer.ts -------------------------------------------------------------------------------- /src/lib/MessageLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/src/lib/MessageLogger.ts -------------------------------------------------------------------------------- /src/lib/TestRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/src/lib/TestRunner.ts -------------------------------------------------------------------------------- /src/lib/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/src/lib/logger.ts -------------------------------------------------------------------------------- /src/popup/Popup.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/src/popup/Popup.svelte -------------------------------------------------------------------------------- /src/popup/components/DOMAnalyzer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/src/popup/components/DOMAnalyzer.svelte -------------------------------------------------------------------------------- /src/popup/components/DOMTree.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/src/popup/components/DOMTree.svelte -------------------------------------------------------------------------------- /src/popup/components/ElementSelector.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/src/popup/components/ElementSelector.svelte -------------------------------------------------------------------------------- /src/popup/components/MessageLogger.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/src/popup/components/MessageLogger.svelte -------------------------------------------------------------------------------- /src/popup/components/SearchBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/src/popup/components/SearchBar.svelte -------------------------------------------------------------------------------- /src/popup/components/TestPanel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/src/popup/components/TestPanel.svelte -------------------------------------------------------------------------------- /src/popup/components/TreeNode.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/src/popup/components/TreeNode.svelte -------------------------------------------------------------------------------- /src/popup/popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/src/popup/popup.ts -------------------------------------------------------------------------------- /src/types/svelte.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/src/types/svelte.d.ts -------------------------------------------------------------------------------- /svelte_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/svelte_config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GangGreenTemperTatum/DOMspy/HEAD/vite.config.ts --------------------------------------------------------------------------------