Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nisaacson/imacros-get-to-first-tab

Switches to the first tab in iMacros for firefox and loads all others
https://github.com/nisaacson/imacros-get-to-first-tab

Last synced: about 1 month ago
JSON representation

Switches to the first tab in iMacros for firefox and loads all others

Awesome Lists containing this project

README

        

Switches to the first tab in iMacros for firefox and closes all others

# Usage

Load the `./dist/get-to-first-tab.js` javascript file in the iMacros window inside Firefox.

# Developing

The source uses `require(...)` statements to simplify the code structure. To make changes and load the new file in Firefox, the javascript source must first be bundled into a single file. An easy way to do this is to use the `browserify` module

```bash
npm install -g browserify # install browserify globally
cd /path/to/this/repo
make bundle
# or execute directly, skipping the makefile
# browserify index.js -o ./dist/get-to-first-tab.js
```