gitextract_oucmwqcm/ ├── .eslintrc.cjs ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ └── node.js.yml ├── .gitignore ├── .npm.release ├── .npmignore ├── .npmrelease ├── CONTRIBUTING.md ├── NOTICE ├── README.md ├── TODO ├── docs/ │ ├── OLD-README.md │ ├── SECURITY.md │ ├── features.md │ ├── issues │ └── todo ├── eslint.config.js ├── exec.js ├── global-run.cjs ├── icons/ │ └── dk.icns ├── package.json ├── public/ │ ├── find_cleaned_duplicates.mjs │ ├── find_crawlable.mjs │ ├── injection.js │ ├── library/ │ │ └── README.md │ ├── make_top.mjs │ ├── old-index.html │ ├── problem_find.mjs │ ├── redirector.html │ ├── style.css │ ├── test-injection.html │ └── top.html ├── scripts/ │ ├── build_only.sh │ ├── clean.sh │ ├── downloadnet-entitlements.xml │ ├── go_build.sh │ ├── go_dev.sh │ ├── postinstall.sh │ ├── publish.sh │ ├── release.sh │ └── sign_windows_release.ps1 ├── sign-win.ps1 ├── src/ │ ├── app.js │ ├── archivist.js │ ├── args.js │ ├── blockedResponse.js │ ├── bookmarker.js │ ├── common.js │ ├── gem-highlighter.js │ ├── hello.js │ ├── highlighter.js │ ├── index.js │ ├── installBrowser.js │ ├── launcher.js │ ├── libraryServer.js │ ├── protocol.js │ ├── root.cjs │ └── root.js ├── stampers/ │ ├── macos-new.sh │ ├── macos.sh │ ├── nix.sh │ ├── notarize_macos.sh │ └── win.bat └── test.sh