• Stars
    star
    1,682
  • Rank 26,859 (Top 0.6 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created about 8 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A basic foundation boilerplate for rich Chrome Extensions using Webpack to help you write modular and modern Javascript code, load CSS easily and automatic reload the browser on code changes.

Chrome Extension Webpack Boilerplate

A basic foundation boilerplate for rich Chrome Extensions using Webpack to help you write modular and modern Javascript code, load CSS easily and automatic reload the browser on code changes.

Developing a new extension

I'll assume that you already read the Webpack docs and the Chrome Extension docs.

  1. Check if your Node.js version is >= 6.
  2. Clone the repository.
  3. Install yarn.
  4. Run yarn.
  5. Change the package's name and description on package.json.
  6. Change the name of your extension on src/manifest.json.
  7. Run yarn run start
  8. 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.
  9. Have fun.

Structure

All your extension's development code must be placed in src folder, including the extension manifest.

The boilerplate is already prepared to have a popup, a options page and a background page. You can easily customize this.

Each page has its own assets package defined. So, to code on popup you must start your code on src/js/popup.js, for example.

You must use the ES6 modules to a better code organization. The boilerplate is already prepared to that and here you have a little example.

Webpack auto-reload and HRM

To make your workflow much more efficient this boilerplate uses the webpack server to development (started with yarn run server) with auto reload feature that reloads the browser automatically every time that you save some file o your editor.

You can run the dev mode on other port if you want. Just specify the env var port like this:

$ PORT=6002 yarn 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, but you need to exclude these entry points from hot reloading (why?). 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:

{
  
  entry: {
    myContentScript: "./src/js/myContentScript.js"
  },
  chromeExtensionBoilerplate: {
    notHotReload: ["myContentScript"]
  }
  
}

and on your src/manifest.json:

{
  "content_scripts": [
    {
      "matches": ["https://www.google.com/*"],
      "js": ["myContentScript.bundle.js"]
    }
  ]
}

Packing

After the development of your extension run the command

$ NODE_ENV=production yarn 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 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.<THE-NODE_ENV>.js on your modules through the module named as secrets, so you can do things like this:

./secrets.development.js

export default { key: "123" };

./src/popup.js

import secrets from "secrets";
ApiCall({ key: secrets.key });

👉 The files with name secrets.*.js already are ignored on the repository.

With React.js

💡 If you want use React.js with this boilerplate, check the react branch.

Contributing

  1. Please!! Do not create a pull request without an issue before discussing the problem.
  2. On your PR make sure that you are following the current codebase style.
  3. Your PR must be single purpose. Resolve just one problem on your PR.
  4. Make sure to commit in the same style that we are committing until now on the project.

Samuel Simões ~ @samuelsimoes ~ Blog

More Repositories

1

vim-jsx-utils

Plugin with some utilities (like extract partial render, rename tag, select self close tags) to folks who work with JSX on Vim.
Vim Script
73
star
2

hanami-webpack

A RubyGem to allow you to use the Webpack as your asset pipeline in Hanami.
Ruby
49
star
3

pomotasking

A Chrome extension pomodoro timer integrated with a ToDo list.
JavaScript
39
star
4

vim-drawer

VimDrawer is a Vim plugin to group related buffers in tabs automatically by the file name.
Vim Script
26
star
5

chrome-basecamp-notifier

Extension for Google Chrome which notifies the activity in your Basecamp Accounts with desktop notifications.
JavaScript
17
star
6

rails-paypal-subscriptions-sample

A very simple Rails app showing an approach to create an app with PayPal subscriptions.
Ruby
11
star
7

pomodoro-todo

Simple web Todo list app pomodoro oriented using Angular.js and Rails.
Ruby
9
star
8

split-bills

A tiny React.js mobile web app to help you to easily split your happy hour bills.
JavaScript
8
star
9

sublime-text-2-favorite-folders

Plugin to help you navigate through the favorite folders on your project, you can also exclude, create, rename and move folders and files.
Python
4
star
10

marionette-behaviors

Useful Marionette.js behaviors extracted from the apps whose I contribute.
JavaScript
3
star
11

vimfiles

My Vimfiles
Vim Script
3
star
12

game-fluxo

A little experiment game with Fluxo
JavaScript
2
star
13

cielo-cakephp-plugin

[Abandonado] Plugin desenvolvido para auxiliar nas tarefas envolvendo o webservice de transações da Cielo para eCommerces.
PHP
2
star
14

todomvc-fluxo

An implementation of TodoMVC with Fluxo, Flux and React.js
JavaScript
1
star
15

browserify-app-bootstrap

A minimal browserify app bootstrap that I use, just browserify + babel + express + node!
JavaScript
1
star
16

angular-todo-app

Tiny experimental Angular.js ToDo app with Rails!
Ruby
1
star