gitextract_k1shepog/ ├── .eslintrc.json ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── feature_request.md │ │ ├── new_bug.md │ │ └── ui_ux_feedback.md │ └── workflows/ │ ├── action.yml │ └── semgrep.yml ├── .gitignore ├── .npmrc ├── .prettierrc.json ├── CONTRIBUTING.md ├── DEVELOPER.md ├── LICENSE ├── README.md ├── devel.md ├── devel_pat.md ├── jest.config.mjs ├── jest.setup.mjs ├── package.json ├── platform/ │ ├── chromium/ │ │ ├── index.ts │ │ ├── manifest.json │ │ └── tsconfig.json │ ├── firefox/ │ │ ├── global.d.ts │ │ ├── index.ts │ │ ├── manifest.json │ │ └── tsconfig.json │ └── mv3/ │ └── chromium/ │ ├── index.ts │ ├── manifest.json │ └── tsconfig.json ├── src/ │ ├── background/ │ │ ├── attesters.ts │ │ ├── const.ts │ │ ├── index.ts │ │ ├── pubVerifToken.ts │ │ ├── replay.ts │ │ ├── rules.ts │ │ ├── tsconfig.json │ │ ├── util.test.ts │ │ └── util.ts │ ├── common/ │ │ ├── const.ts │ │ ├── index.ts │ │ ├── logger.ts │ │ └── settings.ts │ └── options/ │ ├── global.d.ts │ ├── index.css │ ├── index.html │ ├── index.ts │ └── tsconfig.json └── tsconfig.json