Go to file
zombieFox 4fa1e2aebe change icons 2022-07-21 09:29:43 +01:00
.github/workflows add project files 2022-05-21 17:52:23 +01:00
asset/screenshot add screenshot to readme 2022-05-27 00:41:51 +01:00
src change icons 2022-07-21 09:29:43 +01:00
.gitignore add project files 2022-05-21 17:52:23 +01:00
license remove unused styles 2022-05-22 09:22:45 +01:00
package-lock.json add project files 2022-05-21 17:52:23 +01:00
package.json update package 2022-05-31 15:55:58 -04:00
readme.md add customise details 2022-06-01 08:27:14 -04:00
webpack.common.js add project files 2022-05-21 17:52:23 +01:00
webpack.dev.js add project files 2022-05-21 17:52:23 +01:00
webpack.prod.js add project files 2022-05-21 17:52:23 +01:00

readme.md

Volt Tab

A new tab page with bookmark groups and open all controls.

voltTab screenshot

See the demo in action


Development

When developing use:

  • npm start

A development server will automatically open the project in your browser. Normally here: http://localhost:8080.

To build the project use:

  • npm run build

A web ready folder will be created in /dist/web/. A browser addon/extension ready zip will be created in /dist/extension/.

Customise

Edit the src/config.js file to change the bookmarks, colours and background.

All colours are defined as HSL values in an array. Eg:

A colour defined as:

hsl: [204, 100, 72]

Will be converted to CSS as:

selector {
  color: hsl(204, 100%, 72%);
}