├── .eslintignore ├── .eslintrc.cjs ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── package.json ├── pnpm-lock.yaml ├── popup.html ├── postcss.config.js ├── src ├── PopupApp.svelte ├── app.d.ts ├── app.html ├── background.ts ├── content.ts ├── lib │ ├── Pages │ │ ├── AddProfile.svelte │ │ ├── Home.svelte │ │ ├── Settings.svelte │ │ └── index.ts │ ├── components │ │ ├── AccountDropdownMenu.svelte │ │ ├── App │ │ │ ├── Page.svelte │ │ │ ├── PageItem.svelte │ │ │ └── index.ts │ │ ├── Authorization.svelte │ │ ├── AuthorizedApp.svelte │ │ ├── Duration.svelte │ │ ├── Header.svelte │ │ ├── InputField.svelte │ │ ├── RecentActivity.svelte │ │ └── ToggleSwitch.svelte │ ├── controllers │ │ ├── background.controller.ts │ │ ├── browser.controller.ts │ │ ├── index.ts │ │ ├── profile.controller.ts │ │ └── session.controller.ts │ ├── services │ │ └── authorization.ts │ ├── stores │ │ └── data.ts │ ├── types │ │ ├── background.d.ts │ │ ├── index.ts │ │ ├── page.d.ts │ │ └── profile.d.ts │ └── utility │ │ ├── index.ts │ │ ├── nostr-utils.ts │ │ ├── profile-utils.ts │ │ └── utils.ts ├── popup.ts └── styles.css ├── static ├── assets │ ├── logo-off-64.png │ ├── logo-off.png │ ├── logo-on-64.png │ ├── logo-on.png │ └── nostr-provider.js ├── favicon.png └── manifest.json ├── tailwind.config.js ├── tsconfig.json └── vite.config.ts /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/popup.html -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/PopupApp.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/PopupApp.svelte -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/app.html -------------------------------------------------------------------------------- /src/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/background.ts -------------------------------------------------------------------------------- /src/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/content.ts -------------------------------------------------------------------------------- /src/lib/Pages/AddProfile.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/Pages/AddProfile.svelte -------------------------------------------------------------------------------- /src/lib/Pages/Home.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/Pages/Home.svelte -------------------------------------------------------------------------------- /src/lib/Pages/Settings.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/Pages/Settings.svelte -------------------------------------------------------------------------------- /src/lib/Pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/Pages/index.ts -------------------------------------------------------------------------------- /src/lib/components/AccountDropdownMenu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/components/AccountDropdownMenu.svelte -------------------------------------------------------------------------------- /src/lib/components/App/Page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/components/App/Page.svelte -------------------------------------------------------------------------------- /src/lib/components/App/PageItem.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/components/App/PageItem.svelte -------------------------------------------------------------------------------- /src/lib/components/App/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/components/App/index.ts -------------------------------------------------------------------------------- /src/lib/components/Authorization.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/components/Authorization.svelte -------------------------------------------------------------------------------- /src/lib/components/AuthorizedApp.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/components/AuthorizedApp.svelte -------------------------------------------------------------------------------- /src/lib/components/Duration.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/components/Duration.svelte -------------------------------------------------------------------------------- /src/lib/components/Header.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/components/Header.svelte -------------------------------------------------------------------------------- /src/lib/components/InputField.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/components/InputField.svelte -------------------------------------------------------------------------------- /src/lib/components/RecentActivity.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/components/RecentActivity.svelte -------------------------------------------------------------------------------- /src/lib/components/ToggleSwitch.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/components/ToggleSwitch.svelte -------------------------------------------------------------------------------- /src/lib/controllers/background.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/controllers/background.controller.ts -------------------------------------------------------------------------------- /src/lib/controllers/browser.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/controllers/browser.controller.ts -------------------------------------------------------------------------------- /src/lib/controllers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './browser.controller'; -------------------------------------------------------------------------------- /src/lib/controllers/profile.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/controllers/profile.controller.ts -------------------------------------------------------------------------------- /src/lib/controllers/session.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/controllers/session.controller.ts -------------------------------------------------------------------------------- /src/lib/services/authorization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/services/authorization.ts -------------------------------------------------------------------------------- /src/lib/stores/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/stores/data.ts -------------------------------------------------------------------------------- /src/lib/types/background.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/types/background.d.ts -------------------------------------------------------------------------------- /src/lib/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/types/index.ts -------------------------------------------------------------------------------- /src/lib/types/page.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/types/page.d.ts -------------------------------------------------------------------------------- /src/lib/types/profile.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/types/profile.d.ts -------------------------------------------------------------------------------- /src/lib/utility/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/utility/index.ts -------------------------------------------------------------------------------- /src/lib/utility/nostr-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/utility/nostr-utils.ts -------------------------------------------------------------------------------- /src/lib/utility/profile-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/utility/profile-utils.ts -------------------------------------------------------------------------------- /src/lib/utility/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/lib/utility/utils.ts -------------------------------------------------------------------------------- /src/popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/popup.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/src/styles.css -------------------------------------------------------------------------------- /static/assets/logo-off-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/static/assets/logo-off-64.png -------------------------------------------------------------------------------- /static/assets/logo-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/static/assets/logo-off.png -------------------------------------------------------------------------------- /static/assets/logo-on-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/static/assets/logo-on-64.png -------------------------------------------------------------------------------- /static/assets/logo-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/static/assets/logo-on.png -------------------------------------------------------------------------------- /static/assets/nostr-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/static/assets/nostr-provider.js -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/static/manifest.json -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastr-space/keys-band/HEAD/vite.config.ts --------------------------------------------------------------------------------