├── .gitignore ├── Icon.icns ├── appmenu.js ├── error.html ├── index.html ├── index.js ├── menu.js ├── meny.js ├── newtab.html ├── package.json ├── readme.md ├── renderer.js ├── tlds.dat └── windows.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | Tabby-darwin-x64/ 4 | -------------------------------------------------------------------------------- /Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/tabby/HEAD/Icon.icns -------------------------------------------------------------------------------- /appmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/tabby/HEAD/appmenu.js -------------------------------------------------------------------------------- /error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/tabby/HEAD/error.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/tabby/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/tabby/HEAD/index.js -------------------------------------------------------------------------------- /menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/tabby/HEAD/menu.js -------------------------------------------------------------------------------- /meny.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/tabby/HEAD/meny.js -------------------------------------------------------------------------------- /newtab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/tabby/HEAD/newtab.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/tabby/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/tabby/HEAD/readme.md -------------------------------------------------------------------------------- /renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/tabby/HEAD/renderer.js -------------------------------------------------------------------------------- /tlds.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/tabby/HEAD/tlds.dat -------------------------------------------------------------------------------- /windows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/tabby/HEAD/windows.js --------------------------------------------------------------------------------