Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/117649/Tab-Groups
Reimplementation of Firefox Tab Groups as an add-on.
https://github.com/117649/Tab-Groups
Last synced: 12 days ago
JSON representation
Reimplementation of Firefox Tab Groups as an add-on.
- Host: GitHub
- URL: https://github.com/117649/Tab-Groups
- Owner: 117649
- License: mpl-2.0
- Fork: true (Quicksaver/Tab-Groups)
- Created: 2019-08-27T17:32:21.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-08-19T07:41:21.000Z (3 months ago)
- Last Synced: 2024-08-19T09:01:21.885Z (3 months ago)
- Language: JavaScript
- Homepage: https://addons.mozilla.org/firefox/addon/tab-groups-panorama/
- Size: 8.43 MB
- Stars: 22
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
SINCE THERE IS LITTLE TO NONE USERS I'M NO LONGER BOTHER TO UPLOAD NEW RELEASE ANYMORE.
THE dev-build RELEASE WILL ALWAYS PROVIDE A .XPI FILE THAT IS AUTOMATICALLY SYNC TO THE NEWEST COMMIT.
MAINTAINCE WILL BE CONTINUED AS LONG AS I'M USING IT.
There is a ```pack.ps1``` in the source that will pack the ```.xpi``` for you if run with PS version higher than 7.
Single view mode is fine now.
Use TMP's guide for [installation](https://onemen.github.io/tabmixplus-docs/other/installation/)
~~You need install one of these first for it to run: [userChromeJS](https://github.com/xiaoxiaoflood/firefox-scripts) or [bootstrapLoader](https://github.com/xiaoxiaoflood/firefox-scripts/tree/master/extensions/bootstrapLoader)~~
DO NOT USE THE userChromeJS AND bootstrapLoader AT SAME TIME!!! WHICH WILL CAUSE A DOUBLE LOAD OF THE ADDON AND EFFECTIVELY UNLOAD THE ADDON.
# Tab Groups
Reimplementation of Firefox Tab Groups (Panorama) as an add-on. Find more information and get the latest version at https://addons.mozilla.org/firefox/addon/tab-groups-panorama/
## Localization
If you wish to localize the add-on to your language, you can do so via Babelzilla. Please, don't submit a localization directly in Github. While I do greatly appreciate the intent, the git repository doesn't include the AMO description strings, and it's much harder for you, and for myself, to keep track of updates to localizations in here.
To localize the add-on:
1. Create an account on http://www.babelzilla.org
2. Register as translator for the add-on: https://www.babelzilla.org/index.php?option=com_wts&extension=5749&type=show
3. Translate away!
4. When you're finished, change the localization status to "released", so the system notifies me automatically by e-mail, and I will include it in the next update as soon as I can.
## Code Contributions
Whether you'd like to fix bugs or add new features yourself, you're welcome to fork away and make pull requests for pretty much anything you can think of. But be warned: I don't accept anything into my code that I don't agree with or that I don't even understand. So be ready for a series of questions and perhaps a stubborn discussion on my part. :)
- Please try to keep the coding style as similar to the current style as you possibly can. I believe consistency is far more important than anything else, even optimization sometimes.
- Also, please avoid commiting ```'use strict';``` to any files. I know it's not the best coding habits, but I do rely on non-strict behavior in a handful of places, and if while coding I eventually run into any conflict with this, I'll never remember to check this factor. Eventually I may fix those parts though, but don't count on it happening any time soon.
- You'll notice every Javascript file has ```VERSION a.b.c``` version somewhere near the top, usually on the very first line. This is a personal method of organization, and I'd appreciate it if you could bump these versions accordingly when changing files:
- a - major changes, represents a complete overhaul of the code in the file, hardly distinguishable from before; you probably will never need to bump this; when creating new files just give it a version of 1.0.0.
- b - mid-level changes, when you add or modify a significant chunk of code that alters the way the rest works; for instance when adding whole new features.
- c - minor changes, such as most bugfixes; this is probably what you will be bumping most often.