├── .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.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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/README.md -------------------------------------------------------------------------------- /design/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/design/README.md -------------------------------------------------------------------------------- /design/gifs/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/design/gifs/demo.gif -------------------------------------------------------------------------------- /design/graphics.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/design/graphics.ai -------------------------------------------------------------------------------- /design/graphics/graphics.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/design/graphics/graphics.ai -------------------------------------------------------------------------------- /design/graphics/graphics_Large Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/design/graphics/graphics_Large Icon.png -------------------------------------------------------------------------------- /design/graphics/graphics_Large Promo Tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/design/graphics/graphics_Large Promo Tile.png -------------------------------------------------------------------------------- /design/graphics/graphics_Marquee Promo Tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/design/graphics/graphics_Marquee Promo Tile.png -------------------------------------------------------------------------------- /design/graphics/graphics_Medium Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/design/graphics/graphics_Medium Icon.png -------------------------------------------------------------------------------- /design/graphics/graphics_Small Promo Tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/design/graphics/graphics_Small Promo Tile.png -------------------------------------------------------------------------------- /design/screenshots/base/screenshot 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/design/screenshots/base/screenshot 1.png -------------------------------------------------------------------------------- /design/screenshots/base/screenshot 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/design/screenshots/base/screenshot 2.png -------------------------------------------------------------------------------- /design/screenshots/base/screenshot 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/design/screenshots/base/screenshot 3.png -------------------------------------------------------------------------------- /design/screenshots/screenshots.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/design/screenshots/screenshots.psd -------------------------------------------------------------------------------- /design/screenshots/stylized/screenshot 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/design/screenshots/stylized/screenshot 1.png -------------------------------------------------------------------------------- /design/screenshots/stylized/screenshot 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/design/screenshots/stylized/screenshot 2.png -------------------------------------------------------------------------------- /design/screenshots/stylized/screenshot 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/design/screenshots/stylized/screenshot 3.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/package.json -------------------------------------------------------------------------------- /src/command-field.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/src/command-field.vue -------------------------------------------------------------------------------- /src/command.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/src/command.vue -------------------------------------------------------------------------------- /src/fonts/Comfortaa-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/src/fonts/Comfortaa-Regular.ttf -------------------------------------------------------------------------------- /src/help.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/src/help.vue -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/popup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/src/popup/index.js -------------------------------------------------------------------------------- /src/popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/src/popup/popup.html -------------------------------------------------------------------------------- /src/popup/popup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/src/popup/popup.vue -------------------------------------------------------------------------------- /src/storage/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/src/storage/command.ts -------------------------------------------------------------------------------- /src/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evansalter/gata/HEAD/src/theme.scss --------------------------------------------------------------------------------