You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 7, 2022. It is now read-only.
Saka Key is a Chrome and Firefox extension for keyboard-only web browsing. It differs from existing extensions because
3
+
Saka Key is a Chrome and Firefox extension for keyboard-only web browsing. It's configurable, easy to use, and engineered thoughtfully. Install it from the [Chrome Web Store](https://chrome.google.com/webstore/detail/saka-key/hhhpdkekipnbloiiiiaokibebpdpakdp) or the [Firefox Marketplace](https://addons.mozilla.org/en-US/firefox/addon/saka-key/). Also read the [Saka Key Handbook](https://key.saka.io) and try the accompanying tab search extension [Saka](https://github.com/lusakasa/saka).
4
4
5
-
1. Its state machine [architecture](https://key.saka.io/docs/developers/software-architecture) is modular, extensible, and **SIMPLE**. Its design is inspired by my frustration trying to make sense of the scattered state, confusing event handling, and dubious design of similar extensions.
6
-
7
-
2. It's not Vim. Aesthetics matter and graphical menus takes preference over text configuration. It's friendly to non-developers. You shouldn't need a tutorial, but there is one.
8
-
9
-
3. It's engineered for configurability. Developers define options with JSON. This JSON is used to generate the Options Page. Changes to options automatically propagate to all tabs. Options are organized into _profiles_, which are easy to switch between. Sensible default profiles are built-in. Options can be exported and imported.
10
-
11
-
4. It's built with modern tools: ES6+, Webpack, Preact.
12
-
13
-
Saka Key lacks some features other extensions have today, but it has the foundation to reinvent and recreate them better than ever.
14
-
15
-
Try [Saka](https://saka.io), read the [Saka Key Handbook](https://key.saka.io), and ask questions on [Gitter](https://gitter.im/lusakasa/Lobby).
16
-
17
-
## Install
18
-
19
-
***Chrome** - install from the [Chrome Web Store](https://chrome.google.com/webstore/detail/saka-key/hhhpdkekipnbloiiiiaokibebpdpakdp).
20
-
***Firefox** - install from the [Firefox Marketplace](https://addons.mozilla.org/en-US/firefox/addon/saka-key/)
* A text editor. I recommend [VS Code](https://code.visualstudio.com/Download) with the [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) and [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode) extensions.
- A text editor. I recommend [VS Code](https://code.visualstudio.com/Download) with the [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) and [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode) extensions.
14
14
15
15
## Install
16
16
17
17
### Install on Chrome
18
18
19
-
1. Run the following commands in your terminal to clone and build Saka Key.
20
-
An extension you can run will be generated in the 'dist' directory.
19
+
1. Run the following commands in your terminal to clone and build Saka Key.
20
+
An extension you can run will be generated in the 'dist' directory.
# or if you want to generate an optimized production build
50
+
npm run build:firefox
51
+
```
52
52
53
53
2. Navigate to `about:debugging`
54
54
@@ -62,7 +62,7 @@ To develop Saka Key, you must first install:
62
62
63
63
Saka Key is developed together with:
64
64
65
-
* Mosi - a messaging library for Chrome extensions: [github](https://github.com/eejdoowad/mosi), [npm](https://www.npmjs.com/package/mosi)
65
+
- Mosi - a messaging library for Chrome extensions: [github](https://github.com/eejdoowad/mosi), [npm](https://www.npmjs.com/package/mosi)
66
66
67
67
You may have to debug or modify Mosi when contributing to saka key. To use your local copy of Mosi when building Saka Key:
68
68
@@ -71,16 +71,12 @@ You may have to debug or modify Mosi when contributing to saka key. To use your
71
71
3. Navigate to the root of Saka key.
72
72
4. Run `npm link mosi`
73
73
74
-
### Documentation Handbook (key.saka.io)
75
-
76
-
The Saka Key handbook (which you're reading right now) is generated using [Gitbook](https://github.com/GitbookIO/gitbook). Markdown files in the `book` directory are processed by Gitbook to generate HTML files. Run `npn run book:dev` from Saka Key's root directory to see changes live.
77
-
78
-
[key.saka.io](https://key.saka.io) is automataically generated from Saka Key's github repository on every commit using [Netlify](https://www.netlify.com/).
79
-
80
74
## Deployment
81
75
82
-
[Travis CI](https://travis-ci.org/) generates a [Saka Key Release](https://github.com/lusakasa/saka-key/releases) from every tagged commit. A release includes source code as well as development and production builds for Chrome and Firefox. Create a release with `git tag -a v1.x.x -m "v1.x.x"`. Push tags with `git push origin --tags`.
76
+
A Github action generates a release from every tagged commit. To generate a new release, run `git tag vx.x.x"`. Then push the tag with`git push origin vx.x.x`.
77
+
78
+
[key.saka.io](https://key.saka.io) is automataically generated from `/docs` directory of Saka Key's github repository on every commit using [Netlify](https://www.netlify.com/).
0 commit comments