Firefox & Chrome extension to auto close tabs. Formerly known as "Ad Close Gold"
Close tabs by configuring search patterns that match website url's or titles. Search patterns can be strings with wildcards or regular expressions.
Keeps track of tabs it closes and supports exporting and importing configurations.
The extension will sync your configs across browsers if you are using the synchronization functionality of your browser.
Visit the wiki to learn more about how to use the extension: https://github.com/mukunku/Tab-Close-Gold/wiki
Follow these steps to get the extension working locally.
- Clone the repo and open a command prompt to the
src
folder - Run
npm install
- Once that completes run
npm run build:watch
- This way any time you make a change the app will re-transpile everything automatically
- In Chrome go to
chrome://extensions/
and enable developer mode in the top-right corner - Click
Load unpacked
and select thesrc
folder - Chrome will now have your local version of the extension running
- As you make code changes you can click
Update
to update the extension in Chrome.
- Clone the repo and open a command prompt to the
src
folder - Run
npm install
- Once that completes run
npm run publish-debug
- This will generate
/src/publish.firefox.zip
- This will generate
- In Firefox go to
about:addons
- Click on the gear icon and select
Debug Add-ons
- Next click
Load Temporary Add-on...
and selectpublish.firefox.zip
- Firefox will now have your local version of the extension running
- To push further code changes to Firefox you'll need to redo these steps each time