{"id":24396231,"url":"https://github.com/devgauravjatt/svelte-password-generator-chrome","last_synced_at":"2026-04-15T17:31:29.597Z","repository":{"id":261440891,"uuid":"884321758","full_name":"devgauravjatt/Svelte-Password-Generator-Chrome","owner":"devgauravjatt","description":"This project creates a Password Generator Chrome Extension using Svelte and Vite. The extension helps generate strong, random passwords for users, and it's easy to integrate into Chrome.","archived":false,"fork":false,"pushed_at":"2024-11-06T14:56:54.000Z","size":69,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-26T06:49:41.864Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Svelte","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devgauravjatt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-06T14:43:37.000Z","updated_at":"2025-06-12T11:56:10.000Z","dependencies_parsed_at":"2024-11-06T15:50:08.376Z","dependency_job_id":null,"html_url":"https://github.com/devgauravjatt/Svelte-Password-Generator-Chrome","commit_stats":null,"previous_names":["devgauravjatt/svelte-password-generator-chrome"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/devgauravjatt/Svelte-Password-Generator-Chrome","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgauravjatt%2FSvelte-Password-Generator-Chrome","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgauravjatt%2FSvelte-Password-Generator-Chrome/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgauravjatt%2FSvelte-Password-Generator-Chrome/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgauravjatt%2FSvelte-Password-Generator-Chrome/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devgauravjatt","download_url":"https://codeload.github.com/devgauravjatt/Svelte-Password-Generator-Chrome/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgauravjatt%2FSvelte-Password-Generator-Chrome/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31852647,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"ssl_error","status_checked_at":"2026-04-15T15:24:39.138Z","response_time":63,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-01-19T21:25:43.899Z","updated_at":"2026-04-15T17:31:29.579Z","avatar_url":"https://github.com/devgauravjatt.png","language":"Svelte","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Svelte Password Generator Chrome Extension\n\nThis project creates a **Password Generator Chrome Extension** using **Svelte** and **Vite**. The extension helps generate strong, random passwords for users, and it's easy to integrate into Chrome.\n\n## How to Build the Project\n\nFollow these steps to clone, install dependencies, and build the password generator extension.\n\n### 1. Clone the Repository\n\nStart by cloning the repository to your local machine:\n\n```bash\ngit clone https://github.com/yourusername/password-generator-extension.git\n```\n\n### 2. Install Dependencies\n\nNavigate to the project folder and install the necessary dependencies:\n\n```bash\ncd password-generator-extension\nnpm install\n```\n\n### 3. Install TypeScript \u0026 TSX\n\nTo enable TypeScript support and run the TypeScript CLI (`tsx`), you will need to install `tsx` globally:\n\n```bash\nnpm install -g tsx\n```\n\n### 4. Build the Project\n\nRun the build command to compile the Svelte app using Vite:\n\n```bash\nnpm run build\n```\n\n### 5. Run the TypeScript CLI\n\nNow, you can run the TypeScript CLI using `tsx`:\n\n```bash\ntsx cli.ts\n```\n\nThis will start the CLI logic for the extension.\n\n### 6. Deploy and Load into Chrome\n\nOnce the build is complete, you'll find the extension files in the `/build` directory. You can now load the extension into Chrome:\n\n1. Open **Chrome** and go to `chrome://extensions/`\n2. Enable **Developer Mode**\n3. Click on **Load unpacked** and select the `/build` directory\n\nYour password generator extension should now be active and ready to use in Chrome!\n\n---\n\n## Project Structure\n\nHere’s a quick overview of the project structure:\n\n```\n .\n├──  build\n│   ├──  assets\n│   │   ├──  favicon.png\n│   │   ├──  main.css\n│   │   └──  main.js\n│   ├──  favicon.png\n│   ├──  index.html\n│   └──  manifest.json\n├──  bun.lockb\n├──  cli.ts\n├──  index.html\n├──  package.json\n├──  postcss.config.js\n├──  public\n│   └──  favicon.png\n├──  README.md\n├──  src\n│   ├──  app.css\n│   ├──  App.svelte\n│   ├──  assets\n│   │   └── 󰕙 svelte.svg\n│   ├──  lib\n│   │   └──  index.ts\n│   ├──  main.ts\n│   └──  vite-env.d.ts\n├──  svelte.config.js\n├──  tailwind.config.js\n├──  tsconfig.json\n├──  tsconfig.node.json\n└──  vite.config.ts\n```\n\n## Development\n\nDuring development, you can run the following command to start a local server and begin working on the extension:\n\n```bash\nnpm run dev\n```\n\nThis will launch a local development server and you can preview the extension in the browser by going to the provided URL (usually `http://localhost:3000`).\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n---\n\nFeel free to tweak this README further to match the specifics of your project. Would you like to add more sections, like Features or Contributions?\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevgauravjatt%2Fsvelte-password-generator-chrome","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevgauravjatt%2Fsvelte-password-generator-chrome","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevgauravjatt%2Fsvelte-password-generator-chrome/lists"}