Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/BinaryMuse/chrome-fast-tab-switcher
:keyboard: React-based extension to quickly switch to other open Chrome tabs with just your keyboard
https://github.com/BinaryMuse/chrome-fast-tab-switcher
chrome-extension chrome-tabs javascript keyboard react
Last synced: 3 months ago
JSON representation
:keyboard: React-based extension to quickly switch to other open Chrome tabs with just your keyboard
- Host: GitHub
- URL: https://github.com/BinaryMuse/chrome-fast-tab-switcher
- Owner: BinaryMuse
- License: mit
- Created: 2014-02-07T06:15:23.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2018-11-18T20:44:56.000Z (almost 6 years ago)
- Last Synced: 2024-05-02T15:25:49.211Z (6 months ago)
- Topics: chrome-extension, chrome-tabs, javascript, keyboard, react
- Language: JavaScript
- Homepage: https://chrome.google.com/webstore/detail/fast-tab-switcher/jkhfenkikopkkpboaipgllclaaehgpjf
- Size: 2.63 MB
- Stars: 346
- Watchers: 15
- Forks: 51
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Chrome Fast Tab Switcher
========================This Chrome extension allows you to switch between Chrome tabs in your active window quickly using your keyboard.
You can [install this extension from the Chrome Web Store](https://chrome.google.com/webstore/detail/fast-tab-switcher/jkhfenkikopkkpboaipgllclaaehgpjf) if you do not wish to install it from source.
![Demo](demo.gif)
You may also be interested in [a blog post](http://brandontilley.com/2014/02/24/creating-chrome-extensions-with-react.html) I wrote about building this extension with React.
Usage
-----The default keyboard shortcut is `Ctrl+Shift+Comma` (`Cmd+Shift+Comma` on OS X). You can, and may need to, adjust your keyboard shortcuts via the link at the very bottom of your Chrome extensions page at `chrome://extensions`.
`Alt+a` (`Option+a` on OS X) can be used to toggle the "Show tabs from all windows" option.
Installing from Source
----------------------* Visit `chrome://extensions/`
* Ensure `Developer mode` is checked
* Click `Load unpacked extension...`
* Locate and select the directory with the `manifest.json` file in itHacking
-------You must have [Node.js](http://nodejs.org/) installed to build the extension.
1. Install the dependencies: `npm install`
2. Build the extension from `src/js` into `build/js`:
* Build once: `npm run build`
* Build continuously as files change: `npm run watch`The entry point for the extension's background page is `src/js/background.js`. It is responsible for communicating the list of open tabs to the client when requested.
The entry point for the extension's front-end is `src/js/client.jsx`. The client is written using [React](http://facebook.github.io/react/).
Both these files are bundled using [Browserify](http://browserify.org/) (running a JSX transform for the client scripts) into `build/js`. At runtime, the extension uses only files from `build` and `vendor`.
Tests
-----Run the test suite with `npm test`.
Run JSHint on the source with `npm run jshint`.