Skip to content

Commit 74368cc

Browse files
committed
readme
1 parent f8a7d2d commit 74368cc

File tree

1 file changed

+2
-140
lines changed

1 file changed

+2
-140
lines changed

README.md

Lines changed: 2 additions & 140 deletions
Original file line numberDiff line numberDiff line change
@@ -1,144 +1,6 @@
1-
# Chrome Extension Boilerplate with React 17 and Webpack 5
1+
# Screenshot Browser Extension
22

3-
[![npm](https://img.shields.io/npm/v/chrome-extension-boilerplate-react)](https://www.npmjs.com/package/chrome-extension-boilerplate-react)
4-
[![npm-download](https://img.shields.io/npm/dw/chrome-extension-boilerplate-react)](https://www.npmjs.com/package/chrome-extension-boilerplate-react)
5-
[![npm](https://img.shields.io/npm/dm/chrome-extension-boilerplate-react)](https://www.npmjs.com/package/chrome-extension-boilerplate-react)
6-
7-
[![dependencies Status](https://david-dm.org/lxieyang/chrome-extension-boilerplate-react/status.svg)](https://david-dm.org/lxieyang/chrome-extension-boilerplate-react)
8-
[![devDependencies Status](https://david-dm.org/lxieyang/chrome-extension-boilerplate-react/dev-status.svg)](https://david-dm.org/lxieyang/chrome-extension-boilerplate-react?type=dev)
9-
10-
## Announcements
11-
12-
- **_Recently updated from React ~~16~~ to 17 and Webpack ~~4~~ to 5!_**
13-
- **_Recently added [TypeScript](https://www.typescriptlang.org/) Support!_**
14-
15-
## Features
16-
17-
This is a basic Chrome Extensions boilerplate to help you write modular and modern Javascript code, load CSS easily and [automatic reload the browser on code changes](https://webpack.github.io/docs/webpack-dev-server.html#automatic-refresh).
18-
19-
This boilerplate is updated with:
20-
21-
- [React 17](https://reactjs.org)
22-
- [Webpack 5](https://webpack.js.org/)
23-
- [React Hot Loader](https://github.com/gaearon/react-hot-loader)
24-
- [eslint-config-react-app](https://www.npmjs.com/package/eslint-config-react-app)
25-
- [Prettier](https://prettier.io/)
26-
- [TypeScript](https://www.typescriptlang.org/)
27-
28-
This boilerplate is heavily inspired by and adapted from [https://github.com/samuelsimoes/chrome-extension-webpack-boilerplate](https://github.com/samuelsimoes/chrome-extension-webpack-boilerplate), with additional support for React 17 features and Webpack 5.
29-
30-
Please open up an issue to nudge me to keep the npm packages up-to-date. FYI, it takes time to make different packages with different versions work together nicely.
31-
32-
## Installing and Running
33-
34-
### Procedures:
35-
36-
1. Check if your [Node.js](https://nodejs.org/) version is >= **10.13**.
37-
2. Clone this repository.
38-
3. Change the package's `name`, `description`, and `repository` fields in `package.json`.
39-
4. Change the name of your extension on `src/manifest.json`.
40-
5. Run `npm install` to install the dependencies.
41-
6. Run `npm start`
42-
7. Load your extension on Chrome following:
43-
1. Access `chrome://extensions/`
44-
2. Check `Developer mode`
45-
3. Click on `Load unpacked extension`
46-
4. Select the `build` folder.
47-
8. Happy hacking.
48-
49-
## Structure
50-
51-
All your extension's code must be placed in the `src` folder.
52-
53-
The boilerplate is already prepared to have a popup, an options page, a background page, and a new tab page (which replaces the new tab page of your browser). But feel free to customize these.
54-
55-
## TypeScript
56-
57-
This boilerplate now supports TypeScript! The `Options` Page is implemented using TypeScript. Please refer to `src/pages/Options/` for example usages.
58-
59-
## Webpack auto-reload and HRM
60-
61-
To make your workflow much more efficient this boilerplate uses the [webpack server](https://webpack.github.io/docs/webpack-dev-server.html) to development (started with `npm start`) with auto reload feature that reloads the browser automatically every time that you save some file in your editor.
62-
63-
You can run the dev mode on other port if you want. Just specify the env var `port` like this:
64-
65-
```
66-
$ PORT=6002 npm run start
67-
```
68-
69-
## Content Scripts
70-
71-
Although this boilerplate uses the webpack dev server, it's also prepared to write all your bundles files on the disk at every code change, so you can point, on your extension manifest, to your bundles that you want to use as [content scripts](https://developer.chrome.com/extensions/content_scripts), but you need to exclude these entry points from hot reloading [(why?)](https://github.com/samuelsimoes/chrome-extension-webpack-boilerplate/issues/4#issuecomment-261788690). To do so you need to expose which entry points are content scripts on the `webpack.config.js` using the `chromeExtensionBoilerplate -> notHotReload` config. Look the example below.
72-
73-
Let's say that you want use the `myContentScript` entry point as content script, so on your `webpack.config.js` you will configure the entry point and exclude it from hot reloading, like this:
74-
75-
```js
76-
{
77-
78-
entry: {
79-
myContentScript: "./src/js/myContentScript.js"
80-
},
81-
chromeExtensionBoilerplate: {
82-
notHotReload: ["myContentScript"]
83-
}
84-
85-
}
86-
```
87-
88-
and on your `src/manifest.json`:
89-
90-
```json
91-
{
92-
"content_scripts": [
93-
{
94-
"matches": ["https://www.google.com/*"],
95-
"js": ["myContentScript.bundle.js"]
96-
}
97-
]
98-
}
99-
```
100-
101-
## Intelligent Code Completion
102-
103-
Thanks to [@hudidit](https://github.com/lxieyang/chrome-extension-boilerplate-react/issues/4)'s kind suggestions, this boilerplate supports chrome-specific intelligent code completion using [@types/chrome](https://www.npmjs.com/package/@types/chrome). For example:
104-
105-
![intellisense](https://lxieyang.github.io/static/chrome-extension-boilerplate-dev-intellisense-ed9e7c485d3eaf66417e5da4748e2c97.png)
106-
107-
## Packing
108-
109-
After the development of your extension run the command
110-
111-
```
112-
$ NODE_ENV=production npm run build
113-
```
114-
115-
Now, the content of `build` folder will be the extension ready to be submitted to the Chrome Web Store. Just take a look at the [official guide](https://developer.chrome.com/webstore/publish) to more infos about publishing.
116-
117-
## Secrets
118-
119-
If you are developing an extension that talks with some API you probably are using different keys for testing and production. Is a good practice you not commit your secret keys and expose to anyone that have access to the repository.
120-
121-
To this task this boilerplate import the file `./secrets.<THE-NODE_ENV>.js` on your modules through the module named as `secrets`, so you can do things like this:
122-
123-
_./secrets.development.js_
124-
125-
```js
126-
export default { key: '123' };
127-
```
128-
129-
_./src/popup.js_
130-
131-
```js
132-
import secrets from 'secrets';
133-
ApiCall({ key: secrets.key });
134-
```
135-
136-
:point_right: The files with name `secrets.*.js` already are ignored on the repository.
137-
138-
## Resources:
139-
140-
- [Webpack documentation](https://webpack.js.org/concepts/)
141-
- [Chrome Extension documentation](https://developer.chrome.com/extensions/getstarted)
3+
Based on [Chrome Extension Boilerplate with React 17 and Webpack 5](https://github.com/lxieyang/chrome-extension-boilerplate-react)
1424

1435
---
1446

0 commit comments

Comments
 (0)