The Intuition Chrome Extension is your gateway to accessing the Intuition knowledge graph across the web. Seamlessly integrated with Intuition, this extension empowers you to bring your trusted network and personal insights to any website you visit, transforming your browsing experience with valuable context and enhanced security.
- Prevent Phishing Attacks: Get real-time warnings about suspicious websites, leveraging trust signals from people you know and trust.
- Access Trusted Comments and Reviews: See opinions, reviews, and insights from your trusted network wherever you go, helping you make better decisions and avoid misinformation.
- Keep Track of Your Discoveries: Capture, organize, and revisit information you find online, keeping it accessible and connected to your Intuition knowledge graph, and allowing you to easily share it with others.
- AI-Powered Insights: Ask AI questions about any site you're visiting. The AI uses the context of the Intuition knowledge graph to provide additional insights and relevant information, enhancing your understanding and decision-making across the web.
- Built with TypeScript and React, this extension offers a modern and reliable experience for browsing safely and staying informed, backed by Intuition's decentralized knowledge ecosystem.
We welcome contributions to the Intuition Chrome Extension! Whether you're interested in adding new features, improving existing ones, or simply sharing feedback, your input helps enhance the extension for the entire community.
Additionally, if you're inspired to build your own browser extension, this project can serve as a solid foundation. With Intuition's permissionless integration capabilities, you can easily connect your extension to the Intuition knowledge graph. If you already have a browser extension, you can integrate with Intuition to bring the same powerful functionality to your users, enabling them to access trusted insights and enhanced security across the web.
Feel free to explore, contribute, and innovate with us!
happy-flow.mov
- Clone this repository
- Install dependencies & build:
pnpm i
pnpm build
Usage After installation, you can:
Navigate to chrome://extensions/ Enable Developer Mode Click "Load unpacked" Select the project folder
- Intro
- Features
- Structure
- Getting started
- Install dependency
- Community
- Reference
- Star History
- Contributors
This boilerplate helps you create Chrome/Firefox extensions using React and Typescript. It improves the build speed and development experience by using Vite and Turborepo.
- React18
- TypeScript
- Tailwindcss
- Vite with Rollup
- Turborepo
- Prettier
- ESLint
- Chrome Extensions Manifest Version 3
- Custom i18n package
- Custom HMR (Hot Module Rebuild) plugin
- End-to-end testing with WebdriverIO
-
When you're using Windows run this:
git config --global core.eol lf
git config --global core.autocrlf input
This will set the EOL (End of line) character to be the same as on Linux/macOS. Without this, our bash script won't work, and you will have conflicts with developers on Linux/macOS.
-
Clone this repository.(
git clone https://github.com/Jonghakseo/chrome-extension-boilerplate-react-vite
) -
Check your node version is >= than in
.nvmrc
file, recommend to use nvm -
Edit
/packages/i18n/locales/
{your locale(s)}/messages.json
-
In the objects
extensionDescription
andextensionName
, change themessage
fields (leavedescription
alone) -
In
/.package.json
, change theversion
to the desired version of your extension. -
Install pnpm globally:
npm install -g pnpm
(check your node version >= 22.12.0)) -
Run
pnpm install
Then, depending on the target browser:
- Run:
- Dev:
pnpm dev
(on Windows, you should run as administrator; see issue#456) - Prod:
pnpm build
- Dev:
- Open in browser -
chrome://extensions
- Check - Developer mode
- Click - Load unpacked in the upper left corner
- Select the
dist
directory from the boilerplate project
- Run:
- Dev:
pnpm dev:firefox
- Prod:
pnpm build:firefox
- Dev:
- Open in browser -
about:debugging#/runtime/this-firefox
- Click - Load Temporary Add-on... in the upper right corner
- Select the
./dist/manifest.json
file from the boilerplate project
Note
In Firefox, you load add-ons in temporary mode. That means they'll disappear after each browser close. You have to load the add-on on every browser launch.
- Run
pnpm i <package> -w
- Run
pnpm i <package> -F <module name>
package
- Name of the package you want to install e.g. nodemon
module-name
- You can find it inside each package.json
under the key name
, e.g. @extension/content-script
, you can use only content-script
without @extension/
prefix
To add an environment variable:
-
Copy
.example.env
to.env
(in the same directory) -
Add a new record inside
.env
, prefixed withVITE_
, e.g.VITE_MY_API_KEY=...
-
Edit
./vite-env.d.ts
and in theImportMetaEnv
interface, add your variable with the appropriate type, e.g.readonly VITE_MY_API_KEY: string;
-
Then you can read the variable via
import.meta.env.VITE_MY_API_KEY
(learn more at Env Variables and Modes)
- Create
.env
inside that package - Open related
vite.config.mts
and addenvDir: '.'
at the end of this config - Rest steps like above
Remember you can't use global and local at the same time for the same package(It will be overwritten)
The extension lives in the chrome-extension
directory and includes the following files:
manifest.js
- script that outputs themanifest.json
src/background
- background script (background.service_worker
in manifest.json)public
- icons referenced in the manifest; content CSS for user's page injection
Important
To facilitate development, the boilerplate is configured to "Read and change all your data on all websites".
In production, it's best practice to limit the premissions to only the strictly necessary websites. See
Declaring permissions
and edit manifest.js
accordingly.
Code that is transpiled to be part of the extension lives in the pages directory.
content
- content scripts (content_scripts
in manifest.json)content-ui
- React UI rendered in the current page (you can see it at the very bottom when you get started) (content_scripts
in manifest.json)content-runtime
- injected content scripts; this can be injected frompopup
like standardcontent
devtools
- extend the browser DevTools (devtools_page
in manifest.json)devtools-panel
- DevTools panel for devtoolsnew-tab
- override the default New Tab page (chrome_url_overrides.newtab
in manifest.json)options
- options page (options_page
in manifest.json)popup
- popup shown when clicking the extension in the toolbar (action.default_popup
in manifest.json)side-panel
- sidepanel (Chrome 114+) (side_panel.default_path
in manifest.json)
Some shared packages:
dev-utils
- utilities for Chrome extension development (manifest-parser, logger)i18n
- custom internationalization package; provides i18n function with type safety and other validationhmr
- custom HMR plugin for Vite, injection script for reload/refresh, HMR dev-servershared
- shared code for the entire project (types, constants, custom hooks, components etc.)storage
- helpers for easier integration with storage, e.g. local/session storagestailwind-config
- shared Tailwind config for entire projecttsconfig
- shared tsconfig for the entire projectui
- function to merge your Tailwind config with the global one; you can save components herevite-config
- shared Vite config for the entire projectzipper
- runpnpm zip
to pack thedist
folder intoextension-YYYYMMDD-HHmmss.zip
inside the newly createddist-zip
e2e
- runpnpm e2e
for end-to-end tests of your zipped extension on different browsers
If saving source files doesn't cause the extension HMR code to trigger a reload of the browser page, try this:
- Ctrl+C the development server and restart it (
pnpm run dev
) - If you get a
grpc
error, kill theturbo
process and runpnpm dev
again.
To chat with other community members, you can join the Discord server. You can ask questions on that server, and you can also help others.
Also, suggest new features or share any challenges you've faced while developing Chrome extensions!