{"id":19380001,"url":"https://github.com/utags/browser-extension-starter","last_synced_at":"2025-09-06T19:33:13.645Z","repository":{"id":148563314,"uuid":"619818133","full_name":"utags/browser-extension-starter","owner":"utags","description":"🧩 Browser Extension, Userscript starter","archived":false,"fork":false,"pushed_at":"2023-08-17T11:04:09.000Z","size":291,"stargazers_count":20,"open_issues_count":0,"forks_count":16,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-23T19:39:51.953Z","etag":null,"topics":["bookmarklet","bookmarklets","browser-extension","browser-extension-starter","userscript","userscript-builder","userscript-development","userscripts","web-extension","web-extension-starter","web-extensions"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/utags.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2023-03-27T13:44:10.000Z","updated_at":"2025-02-24T18:49:58.000Z","dependencies_parsed_at":null,"dependency_job_id":"5dc99bf6-4131-46c1-8287-7779ea072cb7","html_url":"https://github.com/utags/browser-extension-starter","commit_stats":null,"previous_names":["utags/browser-extension-starter"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/utags/browser-extension-starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utags%2Fbrowser-extension-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utags%2Fbrowser-extension-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utags%2Fbrowser-extension-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utags%2Fbrowser-extension-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/utags","download_url":"https://codeload.github.com/utags/browser-extension-starter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utags%2Fbrowser-extension-starter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273953518,"owners_count":25197316,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-06T02:00:13.247Z","response_time":2576,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["bookmarklet","bookmarklets","browser-extension","browser-extension-starter","userscript","userscript-builder","userscript-development","userscripts","web-extension","web-extension-starter","web-extensions"],"created_at":"2024-11-10T09:12:00.807Z","updated_at":"2025-09-06T19:33:13.622Z","avatar_url":"https://github.com/utags.png","language":"JavaScript","readme":"# Browser Extension Starter and Userscript Starter\n\n## Features\n\n- One codebase for Chrome extesions, Firefox addons, Userscripts, Bookmarklets and simple JavaScript modules\n- Live-reload and React HMR\n- [Plasmo](https://www.plasmo.com/) - The Browser Extension Framework\n- [esbuild](https://esbuild.github.io/) - Bundler\n- React\n- TypeScript\n- [Prettier](https://github.com/prettier/prettier) - Code Formatter\n- [XO](https://github.com/xojs/xo) - JavaScript/TypeScript linter\n\n## Showcases\n\n- [🏷️ UTags - Add usertags to links](https://github.com/utags/utags) - Allow users to add custom tags to links.\n- [🔗 Links Helper](https://github.com/utags/links-helper) - Open external links in a new tab, open internal links matching the specified rules in a new tab, convert text to hyperlinks, convert image links to image tags, parse Markdown style links and image tags, parse BBCode style links and image tags\n\n## How To Make A New Extension\n\n1. Fork [this starter repo](https://github.com/utags/browser-extension-starter), and rename repo to your extension name\n\n2. Clone your repo\n\n3. Install dependencies\n\n```bash\npnpm install\n# or\nnpm install\n```\n\n## Getting Started\n\nFirst, run the development server:\n\n```bash\npnpm dev\n# or\nnpm run dev\n```\n\nOpen your browser and load the appropriate development build. For example, if you are developing for the chrome browser, using manifest v3, use: `build/chrome-mv3-dev`.\n\nYou can start editing the popup by modifying `popup.tsx`. It should auto-update as you make changes. To add an options page, simply add a `options.tsx` file to the root of the project, with a react component default exported. Likewise to add a content page, add a `content.ts` file to the root of the project, importing some module and do some logic, then reload the extension on your browser.\n\nFor further guidance, [visit our Documentation](https://docs.plasmo.com/)\n\n## Making production build\n\nRun the following:\n\n```bash\npnpm build\n# or\nnpm run build\n```\n\nThis should create a production bundle for your extension, ready to be zipped and published to the stores.\n\n## Submit to the webstores\n\nThe easiest way to deploy your Plasmo extension is to use the built-in [bpp](https://bpp.browser.market) GitHub action. Prior to using this action however, make sure to build your extension and upload the first version to the store to establish the basic credentials. Then, simply follow [this setup instruction](https://docs.plasmo.com/framework/workflows/submit) and you should be on your way for automated submission!\n\n## License\n\nCopyright (c) 2023 [Pipecraft](https://www.pipecraft.net). Licensed under the [MIT License](LICENSE).\n\n## \u003e\\_\n\n[![Pipecraft](https://img.shields.io/badge/site-pipecraft-brightgreen)](https://www.pipecraft.net)\n[![UTags](https://img.shields.io/badge/site-UTags-brightgreen)](https://utags.pipecraft.net)\n[![DTO](https://img.shields.io/badge/site-DTO-brightgreen)](https://dto.pipecraft.net)\n[![BestXTools](https://img.shields.io/badge/site-bestxtools-brightgreen)](https://www.bestxtools.com)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Futags%2Fbrowser-extension-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Futags%2Fbrowser-extension-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Futags%2Fbrowser-extension-starter/lists"}