├── .gitignore ├── extension ├── bg.js └── manifest.json ├── host ├── io.github.tcode2k16.rofi.chrome.chromium-browser.json ├── io.github.tcode2k16.rofi.chrome.firefox.json ├── io.github.tcode2k16.rofi.chrome.google-chrome.json └── main.py ├── readme.md ├── res ├── history.gif ├── last-tab.gif ├── open-tab.gif └── same-page.gif └── scripts ├── install.sh └── uninstall.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcode2k16/rofi-chrome/HEAD/.gitignore -------------------------------------------------------------------------------- /extension/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcode2k16/rofi-chrome/HEAD/extension/bg.js -------------------------------------------------------------------------------- /extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcode2k16/rofi-chrome/HEAD/extension/manifest.json -------------------------------------------------------------------------------- /host/io.github.tcode2k16.rofi.chrome.chromium-browser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcode2k16/rofi-chrome/HEAD/host/io.github.tcode2k16.rofi.chrome.chromium-browser.json -------------------------------------------------------------------------------- /host/io.github.tcode2k16.rofi.chrome.firefox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcode2k16/rofi-chrome/HEAD/host/io.github.tcode2k16.rofi.chrome.firefox.json -------------------------------------------------------------------------------- /host/io.github.tcode2k16.rofi.chrome.google-chrome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcode2k16/rofi-chrome/HEAD/host/io.github.tcode2k16.rofi.chrome.google-chrome.json -------------------------------------------------------------------------------- /host/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcode2k16/rofi-chrome/HEAD/host/main.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcode2k16/rofi-chrome/HEAD/readme.md -------------------------------------------------------------------------------- /res/history.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcode2k16/rofi-chrome/HEAD/res/history.gif -------------------------------------------------------------------------------- /res/last-tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcode2k16/rofi-chrome/HEAD/res/last-tab.gif -------------------------------------------------------------------------------- /res/open-tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcode2k16/rofi-chrome/HEAD/res/open-tab.gif -------------------------------------------------------------------------------- /res/same-page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcode2k16/rofi-chrome/HEAD/res/same-page.gif -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcode2k16/rofi-chrome/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcode2k16/rofi-chrome/HEAD/scripts/uninstall.sh --------------------------------------------------------------------------------