Isduii (I Suck at Design UI Inspiration) is a browser extension designed for developers and designers to effortlessly capture UI elements and components from various websites.
- Node.js (version X.X.X)
- npm or pnpm
-
Clone the repository:
git clone <repository-url> cd isduii
-
Install dependencies:
pnpm install # or npm install
Start the development server:
pnpm dev
# or
npm run devOpen your browser and load the development build. For Chrome with Manifest V3, navigate to: build/chrome-mv3-dev.
- Popup: Modify
popup.tsxto edit the popup content. The extension will auto-update as you make changes. - Options Page: To add an options page, create an
options.tsxfile in the project root with a default exported React component. - Content Script: For a content page, create a
content.tsfile in the root, import necessary modules, implement logic, and reload the extension in your browser.
For further guidance, visit our Documentation.
Run the following command to create a production build:
pnpm build
# or
npm run buildThis will generate a production bundle ready to be zipped and published to the web stores.