diff --git a/README.md b/README.md index 4d5ac098c..99c71e308 100755 --- a/README.md +++ b/README.md @@ -1,150 +1,20 @@ - - -# Chrome Extension (MV3) Boilerplate with React 18 and Webpack 5 - -[![npm](https://img.shields.io/npm/v/chrome-extension-boilerplate-react)](https://www.npmjs.com/package/chrome-extension-boilerplate-react) -[![npm-download](https://img.shields.io/npm/dw/chrome-extension-boilerplate-react)](https://www.npmjs.com/package/chrome-extension-boilerplate-react) -[![npm](https://img.shields.io/npm/dm/chrome-extension-boilerplate-react)](https://www.npmjs.com/package/chrome-extension-boilerplate-react) - -## Announcements - -- Recently updated from **[React](https://reactjs.org)** ~~17~~ to **18**! -- **_This boilerplate adopts [Manifest V3](https://developer.chrome.com/docs/extensions/mv3/intro/mv3-overview/)!_** - - For V2 users, please check out the [manifest-v2](https://github.com/lxieyang/chrome-extension-boilerplate-react/tree/manifest-v2) branch, or use version [3.x](https://www.npmjs.com/package/chrome-extension-boilerplate-react/v/3.3.0). - - Check out the [Manifest V3 Migration Guide](https://developer.chrome.com/docs/extensions/mv3/intro/mv3-migration/). -- Recently added [devtools](https://developer.chrome.com/docs/extensions/mv3/devtools/) Support! Thanks [GeekaholicLin](https://github.com/lxieyang/chrome-extension-boilerplate-react/issues/17)! -- Recently updated from **[Webpack Dev Server](https://webpack.js.org/configuration/dev-server/)** ~~3.x~~ to **4.x** and **[Webpack](https://webpack.js.org/)** ~~4~~ to **5**! -- Recently added [TypeScript](https://www.typescriptlang.org/) Support! - -## Features - -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). - -This boilerplate is updated with: - -- [Chrome Extension Manifest V3](https://developer.chrome.com/docs/extensions/mv3/intro/mv3-overview/) -- [React 18](https://reactjs.org) -- [Webpack 5](https://webpack.js.org/) -- [Webpack Dev Server 4](https://webpack.js.org/configuration/dev-server/) -- [React Refresh](https://www.npmjs.com/package/react-refresh) -- [react-refresh-webpack-plugin](https://github.com/pmmmwh/react-refresh-webpack-plugin) -- [eslint-config-react-app](https://www.npmjs.com/package/eslint-config-react-app) -- [Prettier](https://prettier.io/) -- [TypeScript](https://www.typescriptlang.org/) - -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 18 features, Webpack 5, and Webpack Dev Server 4. - -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. - ## Installing and Running ### Procedures: 1. Check if your [Node.js](https://nodejs.org/) version is >= **18**. 2. Clone this repository. -3. Change the package's `name`, `description`, and `repository` fields in `package.json`. -4. Change the name of your extension on `src/manifest.json`. -5. Run `npm install` to install the dependencies. -6. Run `npm start` -7. Load your extension on Chrome following: +3. Run `npm install` to install the dependencies. +4. Run `npm start` +5. Load your extension on Chrome following: 1. Access `chrome://extensions/` 2. Check `Developer mode` 3. Click on `Load unpacked extension` 4. Select the `build` folder. -8. Happy hacking. - -## Structure - -All your extension's code must be placed in the `src` folder. - -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. - -## TypeScript - -This boilerplate now supports TypeScript! The `Options` Page is implemented using TypeScript. Please refer to `src/pages/Options/` for example usages. - -## Webpack auto-reload and HRM - -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. - -You can run the dev mode on other port if you want. Just specify the env var `port` like this: - -``` -$ PORT=6002 npm run start -``` - -## Content Scripts - -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. - -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: - -```js -{ - … - entry: { - myContentScript: "./src/js/myContentScript.js" - }, - chromeExtensionBoilerplate: { - notHotReload: ["myContentScript"] - } - … -} -``` - -and on your `src/manifest.json`: - -```json -{ - "content_scripts": [ - { - "matches": ["https://www.google.com/*"], - "js": ["myContentScript.bundle.js"] - } - ] -} -``` - -## Intelligent Code Completion - -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). - -## Packing - -After the development of your extension run the command - -``` -$ NODE_ENV=production npm run build -``` - -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. - -## Secrets - -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. - -To this task this boilerplate import the file `./secrets..js` on your modules through the module named as `secrets`, so you can do things like this: - -_./secrets.development.js_ - -```js -export default { key: '123' }; -``` - -_./src/popup.js_ - -```js -import secrets from 'secrets'; -ApiCall({ key: secrets.key }); -``` - -:point_right: The files with name `secrets.*.js` already are ignored on the repository. -## Resources: -- [Webpack documentation](https://webpack.js.org/concepts/) -- [Chrome Extension documentation](https://developer.chrome.com/extensions/getstarted) +### Dev Tools - Modifications to deve tools panel ---- +Added static content to dev tools panel in this case it is an array of strings +and a loop to display the list in the page and changed added a version in the title -Michael Xieyang Liu | [Website](https://lxieyang.github.io) diff --git a/src/manifest.json b/src/manifest.json index 9a7ba9080..a5f1c9013 100755 --- a/src/manifest.json +++ b/src/manifest.json @@ -2,6 +2,22 @@ "manifest_version": 3, "name": "Chrome Extension with React & Webpack", "description": "A chrome extension boilerplate built with React 17, Webpack 5, and Webpack Dev Server 4", + "permissions": [ + "declarativeNetRequest", + "declarativeNetRequestFeedback" + ], + "host_permissions": [ + "*://*/" +], + "declarative_net_request": { + "rule_resources": [ + { + "id": "modify_json_response", + "enabled": true, + "path": "rules.json" + } + ] +}, "options_page": "options.html", "background": { "service_worker": "background.bundle.js" }, "action": { diff --git a/src/pages/Background/index.js b/src/pages/Background/index.js index 8943b846f..6b423e600 100644 --- a/src/pages/Background/index.js +++ b/src/pages/Background/index.js @@ -1,2 +1,2 @@ console.log('This is the background page.'); -console.log('Put the background scripts here.'); +console.log('Put the background scripts here.'); \ No newline at end of file diff --git a/src/pages/Devtools/index.js b/src/pages/Devtools/index.js index 647319a1f..64447201f 100644 --- a/src/pages/Devtools/index.js +++ b/src/pages/Devtools/index.js @@ -1,5 +1,5 @@ chrome.devtools.panels.create( - 'Dev Tools from chrome-extension-boilerplate-react', + 'Request interception tool', 'icon-34.png', 'panel.html' -); +); \ No newline at end of file diff --git a/src/pages/Panel/Panel.tsx b/src/pages/Panel/Panel.tsx index 7126ce8a7..91a0cf6be 100644 --- a/src/pages/Panel/Panel.tsx +++ b/src/pages/Panel/Panel.tsx @@ -1,10 +1,27 @@ import React from 'react'; import './Panel.css'; +var links = [ + { endpoint: '/america' }, + { endpoint: '/canada' }, + { endpoint: '/norway' }, + { endpoint: '/bahamas' } +] + const Panel: React.FC = () => { + + + const listItems = links.map((link) => +
  • {link.endpoint}
  • + ); + return (
    -

    Dev Tools Panel

    +

    Dev Tools Panel v1

    +

    Riky

    +
    ); }; diff --git a/src/rules.json b/src/rules.json new file mode 100644 index 000000000..7d10936f5 --- /dev/null +++ b/src/rules.json @@ -0,0 +1,45 @@ +[ + { + "id": 1, + "priority": 1, + "action": { + "type": "modifyHeaders", + "responseHeaders": [ + { + "name": "Content-Type", + "value": "application/json" + } + ] + }, + "condition": { + "urlFilter": "https://conisoft.org/cakes/loadvehicles.php", + "resourceTypes": ["xmlhttprequest", "fetch","main_frame","websocket"] + } + }, + { + "id": 2, + "priority": 2, + "action": { + "type": "modifyBody", + "response": { + "from": "{\"model\":\"fgfgfgfg\",\"year\":\"2000\",\"make\":\"Nissan\"}", + "to": " { \"model\": \"101\", \"year\": \"Modified Item A\", \"make\": \"110\" }" + } + }, + "condition": { + "urlFilter": "https://conisoft.org/cakes/loadvehicles.php", + "resourceTypes": ["xmlhttprequest", "fetch", "main_frame", "websocket"] + } + }, + { + "id" : 3, + "priority": 2, + "action" : { + "type" : "allowAllRequests" + }, + "condition" : { + "urlFilter" : "||conisoft.org/*", + "resourceTypes" : ["main_frame"] + } + } +] \ No newline at end of file diff --git a/utils/webserver.js b/utils/webserver.js index 90faaa83e..03d1774b4 100755 --- a/utils/webserver.js +++ b/utils/webserver.js @@ -27,7 +27,7 @@ var compiler = webpack(config); var server = new WebpackDevServer( { - https: false, + https: true, hot: true, liveReload: false, client: { @@ -40,7 +40,7 @@ var server = new WebpackDevServer( directory: path.join(__dirname, '../build'), }, devMiddleware: { - publicPath: `http://localhost:${env.PORT}/`, + publicPath: `wss://localhost:${env.PORT}/`, writeToDisk: true, }, headers: {