├── .gitignore ├── .nvmrc ├── README.md ├── design ├── README.md ├── gifs │ └── demo.gif ├── graphics.ai ├── graphics │ ├── graphics.ai │ ├── graphics_Large Icon.png │ ├── graphics_Large Promo Tile.png │ ├── graphics_Marquee Promo Tile.png │ ├── graphics_Medium Icon.png │ └── graphics_Small Promo Tile.png └── screenshots │ ├── base │ ├── screenshot 1.png │ ├── screenshot 2.png │ └── screenshot 3.png │ ├── screenshots.psd │ └── stylized │ ├── screenshot 1.png │ ├── screenshot 2.png │ └── screenshot 3.png ├── package-lock.json ├── package.json └── src ├── command-field.vue ├── command.vue ├── fonts └── Comfortaa-Regular.ttf ├── help.vue ├── manifest.json ├── popup ├── index.js ├── popup.html └── popup.vue ├── storage └── command.ts └── theme.scss /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | .cache/ 4 | .DS_STORE -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v11 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 |
3 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
6 | 11 |
12 |20 | 28 |
29 |30 | 31 |
32 |33 | 38 |
39 |40 | 45 |
46 |The URL to navigate to, with %s in place of the query parameters
24 |Welcome to gata!
4 | 5 | 6 |7 | You're seeing this message because you are either a new user or you have not yet created any shortcuts. 8 |
9 | 10 |11 | This guide will walk you through the setup and usage of gata. 12 |
13 | 14 | 15 |16 | What is gata? 17 |
18 | 19 |20 | gata saves time by allowing you to define and use dynamic shortcuts. Rather than links 21 | to a specific URL, dynamic shortcuts allow you to define variables in your URL to be filled in later. 22 |
23 | 24 |
25 | For example, suppose we want a shortcut to go to a Twitter profile. Twitter profiles live at the URL https://twitter.com/
31 | Navigation 32 |
33 | 34 |
35 | Moving around gata is easy! To get to the main menu, click the
40 | Once you have some shortcuts defined, you can search for them and expand them on the main screen. To edit them, click the
44 | How do I create a shortcut? 45 |
46 | 47 |48 | Using the Twitter example again, let's walk through the steps required to define a new shortuct. On the main screen, do the following: 49 | 50 |
61 | You also have the option to create dropdown variables instead of free-form text. To do this, click the
67 | How do I use a shortcut? 68 |
69 | 70 |
71 | The first step is to open gata. To do this, click the
to the right of your address bar.
72 | Alternatively, you can use the keyboard shortcut Ctrl+. (Command+. on Mac).
73 |
76 | Next you can locate the shortcut you want, using the search bar if necessary, and click on it to expand it. From there, you can fill out of the parameters, and click "Go". 77 | The page you requested will open in a new tab. 78 |
79 | 80 |81 | How to go faster? 82 |
83 | 84 |85 | The point of gata is to browse faster, so lets learn how to navigate gata with the keyboard! 86 | We have already learned that the shortcut to open gata is Ctrl+. or Command+.. 87 | However, you can also access shortcuts without taking your hands off the keyboard: 88 | 89 |
99 | Thank You 100 |
101 | 102 |
103 | Thank you for downloading gata! We hope you enjoy using it. Come back to this page at any time by clicking
104 |
108 | If you encounter an issue with gata you can open an issue on Github 109 | or email us at gata@evansalter.com 110 |
111 |