-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Get rid of "tap" nomenclature. * Make load*Tabs preferences integers so we can configure multiple behaviours (e.g. load, lazy, progressive, ...) * Rename hostWhitelist to just whitelist in anticipation of feature generalization. * Drop some preferences from the pref window, including the ability to add new entries to the whitelist.
- Loading branch information
Showing
5 changed files
with
166 additions
and
203 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
pref("extensions.bartap.tapRestoredTabs", true); | ||
pref("extensions.bartap.tapBackgroundTabs", false); | ||
pref("extensions.bartap.tapAfterTimeout", false); | ||
pref("extensions.bartap.timeoutValue", 2); | ||
pref("extensions.bartap.timeoutUnit", 3600); | ||
pref("extensions.bartap.hostWhitelist", ""); | ||
pref("extensions.bartap.findClosestUntappedTab", true); | ||
pref("extensions.bartap.loadOnSelect", 1); | ||
pref("extensions.bartap.loadOnSelectDelay", 500); | ||
pref("extensions.bartab.loadRestoredTabs", 1); | ||
pref("extensions.bartab.loadBackgroundTabs", 0); | ||
pref("extensions.bartab.unloadAfterTimeout", false); | ||
pref("extensions.bartab.timeoutValue", 2); | ||
pref("extensions.bartab.timeoutUnit", 3600); | ||
pref("extensions.bartab.whitelist", ""); | ||
pref("extensions.bartab.findClosestLoadedTab", true); | ||
pref("extensions.bartab.loadOnSelectDelay", 0); | ||
pref("extensions.bartab.migrated", false); | ||
|
||
// https://developer.mozilla.org/en/Localizing_extension_descriptions | ||
pref("[email protected]", "chrome://bartab/locale/overlay.properties"); |
Oops, something went wrong.