diff --git a/shared/Packages-Live b/shared/Packages-Live index 1b19b04f..eee245a7 100644 --- a/shared/Packages-Live +++ b/shared/Packages-Live @@ -1,4 +1,4 @@ -calamares +calamares-git gsmartcontrol manjaro-live-skel manjaro-live-systemd diff --git a/shared/Packages-Root b/shared/Packages-Root index e7cf7d2d..fb6fe99f 100644 --- a/shared/Packages-Root +++ b/shared/Packages-Root @@ -1,6 +1,7 @@ #sonar sonar-release >i686 archlinux32-keyring >multilib gcc-libs-multilib +manjaro-release haveged acpi acpid diff --git a/tromjaro/gnome/Packages-Desktop b/tromjaro/gnome/Packages-Desktop index e4c38769..1afdf671 100644 --- a/tromjaro/gnome/Packages-Desktop +++ b/tromjaro/gnome/Packages-Desktop @@ -92,6 +92,7 @@ gedit feathernotes +gnome-shell-extension-gnome-ui-tune gtk3 gtksourceview-pkgbuild #highlight for PKGBUILD gnome-calculator diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/extension.js b/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/extension.js deleted file mode 100644 index d8f6bc5f..00000000 --- a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/extension.js +++ /dev/null @@ -1,287 +0,0 @@ -/* - * Copyright (C) 2012 Thiago Bellini - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - * - * Some parts of this code were forked from message-notifier: - * https://extensions.gnome.org/extension/150/message-notifier/ - * The idea of setting the menu red were inspired by pidgin-persistent-notification: - * https://extensions.gnome.org/extension/170/pidgin-peristent-notification - * - */ - -const { Clutter, St } = imports.gi; -const Lang = imports.lang; -const Mainloop = imports.mainloop; -const Main = imports.ui.main; -const MessageTray = imports.ui.messageTray; -const GnomeSession = imports.misc.gnomeSession; - -const ExtensionUtils = imports.misc.extensionUtils; -const Me = ExtensionUtils.getCurrentExtension(); -const Lib = Me.imports.lib; - -const SETTING_BLINK_RATE = 'blinkrate'; -const SETTING_USECOLOR = 'usecolor'; -const SETTING_COLOR = 'color'; -const SETTING_USEBACKGROUNDCOLOR = 'usebackgroundcolor'; -const SETTING_BACKGROUNDCOLOR = 'backgroundcolor'; -const SETTING_CHAT_ONLY = 'chatonly'; -const SETTING_FORCE = 'force'; -const SETTING_BLACKLIST = 'application-list'; -const SETTING_FILTER_TYPE = 'filter'; - -let settings, messageStyleHandler; -let originalCountUpdated, originalDestroy; - -function _MessageStyleHandler() { - - /* - Public API - */ - - this.init = function() { - this._signals = {}; - this._statusChangedId = null; - this._loopTimeoutId = null; - this._oldStyle = null; - this._hasStyleAdded = false; - - this._presence = new GnomeSession.Presence( - Lang.bind(this, function(proxy, error) { - if (error) { - logError(error, 'Error while reading gnome-session presence'); - return; - } - })); - } - - this.enable = function() { - this._statusChangedId = this._presence.connectSignal( - 'StatusChanged', Lang.bind(this, function(proxy, senderName, [status]) { - this._presence.status = status; - this._onNotificationsSwitchToggled(); - })); - - // Connect settings change events, so we can update message style - // as soon as the user makes the change - this._connectSetting(SETTING_USECOLOR); - this._connectSetting(SETTING_COLOR); - this._connectSetting(SETTING_BACKGROUNDCOLOR); - this._connectSetting(SETTING_USEBACKGROUNDCOLOR); - this._connectSetting(SETTING_CHAT_ONLY); - this._connectSetting(SETTING_FORCE); - this._connectSetting(SETTING_BLINK_RATE); - - // Check for existing message counters when extension were - // loaded on an already running shell. - this.updateMessageStyle(); - } - - this.disable = function() { - this._presence.disconnectSignal(this._statusChangedId); - for (let key in this._signals) { - settings.disconnect(this._signals[key]); - delete this._signals[key]; - } - - this._removeMessageStyle(); - } - - this.updateMessageStyle = function() { - this.notificationStatus = - (this._presence.status != GnomeSession.PresenceStatus.BUSY); - let sources = Main.messageTray.getSources(); - - if (settings.get_boolean(SETTING_FORCE) || this.notificationStatus) { - let chatOnly = settings.get_boolean(SETTING_CHAT_ONLY); - let filter = settings.get_int(SETTING_FILTER_TYPE); - let currentItems = settings.get_strv(SETTING_BLACKLIST); - currentItems = Lib.getAppNamesFromAppInfos(currentItems); - - for (let i = 0; i < sources.length; i++) { - let source = sources[i]; - - if (chatOnly && !source.isChat) { - // The user choose to only be alerted by real chat notifications - continue; - } - if (source.isMuted) { - // Do not alert for muted notifications - continue; - } - if((filter == 0) && (currentItems.indexOf(source.title) != -1)) { - // Blacklist - continue; - } - if((filter == 1) && (currentItems.indexOf(source.title) == -1)) { - // Whitelist - continue; - } - if (this._hasNotifications(source)) { - this._addMessageStyle(); - return; - } - } - } - // If for above ended without adding the style, that means there's - // no counter and we need to remove the message style. - this._removeMessageStyle(); - } - - /* - Private - */ - - this._connectSetting = function(setting) { - this._signals[setting] = settings.connect( - "changed::" + setting, Lang.bind(this, this._onSettingsChanged)); - } - - this._hasNotifications = function(source) { - if (source.countVisible) { - return true; - } - for (let n = 0; n < source.notifications.length; n++) { - if (!source.notifications[n].resident) { - return true; - } - } - return false; - } - - this._toggleStyle = function() { - if (!this._hasStyleAdded) { - // Notifications may have been cleared since loop timer was added, - // return false to stop the timeout. Just a precaution, should not happen - return false; - } - - let dateMenu = Main.panel.statusArea.dateMenu; - let actor = dateMenu instanceof Clutter.Actor ? dateMenu : dateMenu.actor; - let actualStyle = (actor.style) ? actor.style : ""; - - let userStyle = ""; - if (settings.get_boolean(SETTING_USECOLOR)) { - userStyle += "color: " + settings.get_string(SETTING_COLOR) + ";"; - } - if (settings.get_boolean(SETTING_USEBACKGROUNDCOLOR)) { - userStyle += "background-color: " + settings.get_string(SETTING_BACKGROUNDCOLOR) + ";"; - } - - actor.style = (actor.style == this._oldStyle) ? actualStyle.concat(userStyle) : this._oldStyle; - - // keep looping - return true; - } - - this._addMessageStyle = function() { - if (this._hasStyleAdded) { - this._removeMessageStyle(); - } - - let dateMenu = Main.panel.statusArea.dateMenu; - let loopDelay = settings.get_int(SETTING_BLINK_RATE); - - let actor = dateMenu instanceof Clutter.Actor ? dateMenu : dateMenu.actor; - this._oldStyle = actor.style; - this._hasStyleAdded = true; - - if (loopDelay > 0) { - this._loopTimeoutId = Mainloop.timeout_add( - loopDelay, Lang.bind(this, this._toggleStyle)) - } else { - this._toggleStyle(); - } - } - - this._removeMessageStyle = function() { - if (!this._hasStyleAdded) { - return; - } - - this._hasStyleAdded = false; - if (this._loopTimeoutId != null) { - // Stop the looping - Mainloop.source_remove(this._loopTimeoutId); - this._loopTimeoutId = null; - } - - let dateMenu = Main.panel.statusArea.dateMenu; - let actor = dateMenu instanceof Clutter.Actor ? dateMenu : dateMenu.actor; - actor.style = this._oldStyle; - this._oldStyle = null; - } - - /* - Callbacks - */ - - this._onSettingsChanged = function() { - this.updateMessageStyle(); - } - - this._onNotificationsSwitchToggled = function() { - this.updateMessageStyle(); - } -} - -/* - Monkey-patchs for MessageTray.Source -*/ - -function _countUpdated() { - originalCountUpdated.call(this); - - messageStyleHandler.updateMessageStyle(); -} - -function _destroy() { - originalDestroy.call(this); - - messageStyleHandler.updateMessageStyle(); -} - -/* - Shell-extensions handlers -*/ - -function init() { - Lib.initTranslations(Me); - settings = Lib.getSettings(Me); - - messageStyleHandler = new _MessageStyleHandler(); - messageStyleHandler.init(); -} - -function enable() { - if (MessageTray.Source.prototype.countUpdated == _countUpdated) { - return; - } - originalCountUpdated = MessageTray.Source.prototype.countUpdated; - originalDestroy = MessageTray.Source.prototype.destroy; - - MessageTray.Source.prototype.countUpdated = _countUpdated; - MessageTray.Source.prototype.destroy = _destroy; - - messageStyleHandler.enable(); -} - -function disable() { - MessageTray.Source.prototype.countUpdated = originalCountUpdated; - MessageTray.Source.prototype.destroy = originalDestroy; - - messageStyleHandler.disable(); -} diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/lib.js b/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/lib.js deleted file mode 100644 index 989e75d9..00000000 --- a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/lib.js +++ /dev/null @@ -1,131 +0,0 @@ -/* - * Copyright (C) 2012 Thiago Bellini - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - * - * Most of this code was forked from gnome-shell-extensions convenience.js: - * http://git.gnome.org/browse/gnome-shell-extensions/tree/lib/convenience.js - * - */ - -const Gettext = imports.gettext; -const Gdk = imports.gi.Gdk; -const Gio = imports.gi.Gio; - -const Config = imports.misc.config; - -/* - Extension utils - */ - -function initTranslations(extension) { - // This is the same as UUID from metadata.json - let domain = 'gnome-shell-notifications-alert'; - - // check if this extension was built with "make zip-file", and thus - // has the locale files in a subfolder - // otherwise assume that extension has been installed in the - // same prefix as gnome-shell - let localeDir = extension.dir.get_child('locale'); - if (localeDir.query_exists(null)) { - Gettext.bindtextdomain(domain, localeDir.get_path()); - } else { - Gettext.bindtextdomain(domain, Config.LOCALEDIR); - } -} - -function getSettings(extension) { - let schema = 'org.gnome.shell.extensions.notifications-alert'; - - const GioSSS = Gio.SettingsSchemaSource; - - // check if this extension was built with "make zip-file", and thus - // has the schema files in a subfolder - // otherwise assume that extension has been installed in the - // same prefix as gnome-shell (and therefore schemas are available - // in the standard folders) - let schemaDir = extension.dir.get_child('schemas'); - let schemaSource; - if (schemaDir.query_exists(null)) { - schemaSource = GioSSS.new_from_directory(schemaDir.get_path(), - GioSSS.get_default(), - false); - } else { - schemaSource = GioSSS.get_default(); - } - - let schemaObj = schemaSource.lookup(schema, true); - if (!schemaObj) { - throw new Error('Schema ' + schema + ' could not be found for extension ' + - extension.metadata.uuid + '. Please check your installation.'); - } - - return new Gio.Settings({settings_schema: schemaObj}); -} - -/* - Color utils - */ - -function _scaleRound(value) { - // Based on gtk/gtkcoloreditor.c - value = Math.floor((value / 255) + 0.5); - value = Math.max(value, 0); - value = Math.min(value, 255); - return value; -} - -function _dec2Hex(value) { - value = value.toString(16); - - while (value.length < 2) { - value = '0' + value; - } - - return value; -} - -function getColorByHexadecimal(hex) { - let colorArray = Gdk.Color.parse(hex); - let color = null; - - if (colorArray[0]) { - color = colorArray[1]; - } else { - // On any error, default to red - color = new Gdk.Color({red: 65535}); - } - - return color; -} - -function getHexadecimalByColor(color) { - let red = _scaleRound(color.red); - let green = _scaleRound(color.green); - let blue = _scaleRound(color.blue); - return "#" + _dec2Hex(red) + _dec2Hex(green) + _dec2Hex(blue); -} - -function getAppNamesFromAppInfos(list) { - let appNames = [ ]; - for (let i = 0; i < list.length; i++) { - let id = list[i]; - let appInfo = Gio.DesktopAppInfo.new(id); - if (!appInfo) - continue; - appNames.push(appInfo.get_name()); - } - return appNames; -} diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/cs_CZ.po b/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/cs_CZ.po deleted file mode 100644 index d17e2613..00000000 --- a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/cs_CZ.po +++ /dev/null @@ -1,117 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-12-09 21:12-0300\n" -"PO-Revision-Date: 2020-02-23 10:15+0200\n" -"Last-Translator: \n" -"Language-Team: \n" -"Language: cs_CZ\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.1\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" - -#: src/prefs.js:276 -msgid "Add" -msgstr "Přidat" - -#: src/prefs.js:257 -msgid "Add Rule" -msgstr "Přidat pravidlo" - -#: src/prefs.js:177 -msgid "Alert background color" -msgstr "Barva pozadí výstrahy" - -#: src/prefs.js:207 -msgid "Alert even if you set notifications to OFF on user menu (default: OFF)" -msgstr "" -"Výstrahy i když je zobrazování upozorňování v uživatelské nabídce vypnuto" -"(výchozí: vypnuto)" - -#: src/prefs.js:173 -msgid "Alert font color" -msgstr "Barva písma výstrahy" - -#: src/prefs.js:241 -msgid "Application" -msgstr "Aplikace" - -#: src/prefs.js:140 -msgid "Blacklist" -msgstr "Seznam vyloučených" - -#: src/prefs.js:271 -msgid "Blacklist app" -msgstr "Zařadit aplikaci na seznam vyloučených" - -#: src/prefs.js:184 -msgid "Blink rate (in ms)" -msgstr "Rychlost blikání (v ms)" - -#: src/prefs.js:281 -msgid "Choose an application to blacklist:" -msgstr "Zvolte aplikaci pro zařazení na seznam vyloučených:" - -#: src/prefs.js:123 -msgid "Filter List" -msgstr "Seznam filtru" - -#: src/prefs.js:133 -msgid "Filter Type" -msgstr "Typ filtru" - -#: src/prefs.js:206 -msgid "Force alerting even when notifications are set to OFF" -msgstr "Zvýrazňovat i pokud jsou upozorňování vypnuta" - -#: src/prefs.js:202 -msgid "Only alert for chat notifications" -msgstr "Zobrazovat výstrahy pouze na zprávy konverzací" - -#: src/prefs.js:203 -msgid "" -"Only chat notifications (like Empathy ones) will get alerted (default: OFF)" -msgstr "" -"Výstrahy budou zobrazovány pouze pro zprávy konverzací – např. Empathy (výchozí: vypnuto)" - -#: src/prefs.js:178 -msgid "The background color used to paint the message on user's menu" -msgstr "Barva pozadí, kterou je zobrazena zpráva v uživatelské nabídce" - -#: src/prefs.js:174 -msgid "The color used to paint the message on user's menu" -msgstr "Barva, kterou je zobrazena zpráva v uživatelské nabídce" - -#: src/prefs.js:185 -msgid "The rate that the alert blinks, in ms. 0 means no blink (default: 800)" -msgstr "" -"Určuje, jakou rychlostí má problikávat zvýrazňující a výchozí barva " -"(800=výchozí hodnota, méně=rychleji, více=pomaleji, 0=žádné blikání)" - -#: src/prefs.js:198 -msgid "Use alert background color" -msgstr "Použít barvu pozadí výstrahy" - -#: src/prefs.js:194 -msgid "Use alert font color" -msgstr "Použít barvu písma výstrahy" - -#: src/prefs.js:199 -msgid "Use the alert background color for alert blinks (default: OFF)" -msgstr "Blikat barvou jakou má pozadí výstrahy (výchozí: vypnuto)" - -#: src/prefs.js:195 -msgid "Use the alert font color for alert blinks (default: ON)" -msgstr "Blikat barvou jakou má písmo výstrahy (výchozí: zapnuto)" - -#: src/prefs.js:141 -msgid "Whitelist" -msgstr "Seznam povolených" diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/cs_CZ/LC_MESSAGES/gnome-shell-notifications-alert.mo b/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/cs_CZ/LC_MESSAGES/gnome-shell-notifications-alert.mo deleted file mode 100644 index 24f166b3..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/cs_CZ/LC_MESSAGES/gnome-shell-notifications-alert.mo and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/de_DE.po b/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/de_DE.po deleted file mode 100644 index 186ab068..00000000 --- a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/de_DE.po +++ /dev/null @@ -1,126 +0,0 @@ -# German translations for gnome-shell-notifications-alert package. -# Copyright (C) 2013 Jonatan Zeidler -# This file is distributed under the same license as the gnome-shell-notifications-alert package. -# Jonatan Zeidler , 2013. -# Onno Giesmann , 2019. -# -msgid "" -msgstr "" -"Project-Id-Version: gnome-shell-notifications-alert\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-12-09 21:12-0300\n" -"PO-Revision-Date: 2019-12-29 21:14+0100\n" -"Last-Translator: Onno Giesmann \n" -"Language-Team: German <--->\n" -"Language: de\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.2.4\n" - -#: src/prefs.js:276 -msgid "Add" -msgstr "Hinzufügen" - -#: src/prefs.js:257 -msgid "Add Rule" -msgstr "Regel hinzufügen" - -#: src/prefs.js:177 -msgid "Alert background color" -msgstr "Hintergrundfarbe bei Benachrichtigung" - -#: src/prefs.js:207 -msgid "Alert even if you set notifications to OFF on user menu (default: OFF)" -msgstr "" -"Benachrichtigungen auch dann anzeigen, wenn sie im Nutzermenü ausgeschaltet " -"sind (Vorgabe: AUS)" - -#: src/prefs.js:173 -msgid "Alert font color" -msgstr "Schriftfarbe bei Benachrichtigung" - -#: src/prefs.js:241 -msgid "Application" -msgstr "Anwendung" - -#: src/prefs.js:140 -msgid "Blacklist" -msgstr "Schwarze Liste" - -#: src/prefs.js:271 -msgid "Blacklist app" -msgstr "Anwendung für schwarze Liste" - -#: src/prefs.js:184 -msgid "Blink rate (in ms)" -msgstr "Blinkgeschwindigkeit (in ms)" - -#: src/prefs.js:281 -msgid "Choose an application to blacklist:" -msgstr "Anwendung für schwarze Liste auswählen:" - -#: src/prefs.js:123 -msgid "Filter List" -msgstr "Filterliste" - -#: src/prefs.js:133 -msgid "Filter Type" -msgstr "Filtertyp" - -#: src/prefs.js:206 -msgid "Force alerting even when notifications are set to OFF" -msgstr "Auch benachrichtigen, wenn sie allgemein auf AUS gestellt sind" - -#: src/prefs.js:202 -msgid "Only alert for chat notifications" -msgstr "Nur bei Chat-Benachrichtigungen aktivieren" - -#: src/prefs.js:203 -msgid "" -"Only chat notifications (like Empathy ones) will get alerted (default: OFF)" -msgstr "" -"Benachrichtigt nur bei Chat-Meldungen (z.B. von Empathy) (Vorgabe: AUS)" - -#: src/prefs.js:178 -msgid "The background color used to paint the message on user's menu" -msgstr "" -"Diese Farbe wird verwendet, um den Hintergrund vom Nutzermenü bei " -"Benachrichtigungen entsprechend einzufärben" - -#: src/prefs.js:174 -msgid "The color used to paint the message on user's menu" -msgstr "" -"Diese Farbe wird verwendet, um die Schrift im Nutzermenü bei " -"Benachrichtigungen entsprechend einzufärben" - -#: src/prefs.js:185 -msgid "The rate that the alert blinks, in ms. 0 means no blink (default: 800)" -msgstr "" -"Gibt an, mit welcher Geschwindigkeit der Alarm blinkt (in ms). Wert 0 " -"bedeutet kein Blinken (Vorgabe: 800)" - -#: src/prefs.js:198 -msgid "Use alert background color" -msgstr "Hintergrundfarbe bei Benachrichtigung anwenden" - -#: src/prefs.js:194 -msgid "Use alert font color" -msgstr "Schriftfarbe bei Benachrichtigung anwenden" - -#: src/prefs.js:199 -msgid "Use the alert background color for alert blinks (default: OFF)" -msgstr "" -"Bei Benachrichtigungen wird der Hintergrund entsprechend dem eingestellten " -"Wert eingefärbt (Vorgabe: AUS)" - -#: src/prefs.js:195 -msgid "Use the alert font color for alert blinks (default: ON)" -msgstr "" -"Bei Benachrichtigungen wird die Schrift entsprechend dem eingestellten Wert " -"eingefärbt (Vorgabe: AN)" - -#: src/prefs.js:141 -msgid "Whitelist" -msgstr "Weiße Liste" diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/de_DE/LC_MESSAGES/gnome-shell-notifications-alert.mo b/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/de_DE/LC_MESSAGES/gnome-shell-notifications-alert.mo deleted file mode 100644 index 5c6a29f5..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/de_DE/LC_MESSAGES/gnome-shell-notifications-alert.mo and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/messages.pot b/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/messages.pot deleted file mode 100644 index 6b10d2e4..00000000 --- a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/messages.pot +++ /dev/null @@ -1,111 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-12-09 21:12-0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#: src/prefs.js:276 -msgid "Add" -msgstr "" - -#: src/prefs.js:257 -msgid "Add Rule" -msgstr "" - -#: src/prefs.js:177 -msgid "Alert background color" -msgstr "" - -#: src/prefs.js:207 -msgid "Alert even if you set notifications to OFF on user menu (default: OFF)" -msgstr "" - -#: src/prefs.js:173 -msgid "Alert font color" -msgstr "" - -#: src/prefs.js:241 -msgid "Application" -msgstr "" - -#: src/prefs.js:140 -msgid "Blacklist" -msgstr "" - -#: src/prefs.js:271 -msgid "Blacklist app" -msgstr "" - -#: src/prefs.js:184 -msgid "Blink rate (in ms)" -msgstr "" - -#: src/prefs.js:281 -msgid "Choose an application to blacklist:" -msgstr "" - -#: src/prefs.js:123 -msgid "Filter List" -msgstr "" - -#: src/prefs.js:133 -msgid "Filter Type" -msgstr "" - -#: src/prefs.js:206 -msgid "Force alerting even when notifications are set to OFF" -msgstr "" - -#: src/prefs.js:202 -msgid "Only alert for chat notifications" -msgstr "" - -#: src/prefs.js:203 -msgid "" -"Only chat notifications (like Empathy ones) will get alerted (default: OFF)" -msgstr "" - -#: src/prefs.js:178 -msgid "The background color used to paint the message on user's menu" -msgstr "" - -#: src/prefs.js:174 -msgid "The color used to paint the message on user's menu" -msgstr "" - -#: src/prefs.js:185 -msgid "The rate that the alert blinks, in ms. 0 means no blink (default: 800)" -msgstr "" - -#: src/prefs.js:198 -msgid "Use alert background color" -msgstr "" - -#: src/prefs.js:194 -msgid "Use alert font color" -msgstr "" - -#: src/prefs.js:199 -msgid "Use the alert background color for alert blinks (default: OFF)" -msgstr "" - -#: src/prefs.js:195 -msgid "Use the alert font color for alert blinks (default: ON)" -msgstr "" - -#: src/prefs.js:141 -msgid "Whitelist" -msgstr "" diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/nl_NL.po b/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/nl_NL.po deleted file mode 100644 index 8cdf79cf..00000000 --- a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/nl_NL.po +++ /dev/null @@ -1,123 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-12-09 21:12-0300\n" -"PO-Revision-Date: 2019-08-06 12:16+0200\n" -"Last-Translator: Heimen Stoffels \n" -"Language-Team: \n" -"Language: nl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.2.3\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: src/prefs.js:276 -msgid "Add" -msgstr "Toevoegen" - -#: src/prefs.js:257 -msgid "Add Rule" -msgstr "Regel toevoegen" - -#: src/prefs.js:177 -#, fuzzy -msgid "Alert background color" -msgstr "Meldingskleur" - -#: src/prefs.js:207 -msgid "Alert even if you set notifications to OFF on user menu (default: OFF)" -msgstr "" -"Ook knipperen bij nieuwe meldingen als meldingen zijn uitgeschakeld " -"(standaard: UIT)" - -#: src/prefs.js:173 -#, fuzzy -msgid "Alert font color" -msgstr "Meldingskleur" - -#: src/prefs.js:241 -msgid "Application" -msgstr "Toepassing" - -#: src/prefs.js:140 -msgid "Blacklist" -msgstr "Zwarte lijst" - -#: src/prefs.js:271 -msgid "Blacklist app" -msgstr "Toev. aan zwarte lijst" - -#: src/prefs.js:184 -msgid "Blink rate (in ms)" -msgstr "Knippersnelheid (in ms)" - -#: src/prefs.js:281 -msgid "Choose an application to blacklist:" -msgstr "Kies een toepassing voor de zwarte lijst:" - -#: src/prefs.js:123 -msgid "Filter List" -msgstr "Filterlijst" - -#: src/prefs.js:133 -msgid "Filter Type" -msgstr "Soort filter" - -#: src/prefs.js:206 -msgid "Force alerting even when notifications are set to OFF" -msgstr "" -"Knipperen bij nieuwe meldingen afdwingen als meldingen zijn uitgeschakeld" - -#: src/prefs.js:202 -msgid "Only alert for chat notifications" -msgstr "Alleen knipperen bij chatmeldingen" - -#: src/prefs.js:203 -msgid "" -"Only chat notifications (like Empathy ones) will get alerted (default: OFF)" -msgstr "" -"Alleen knipperen bij chatmeldingen (zoals bijv. die van Empathy - standaard: " -"UIT)" - -#: src/prefs.js:178 -#, fuzzy -msgid "The background color used to paint the message on user's menu" -msgstr "De kleur van het knipperpatroon" - -#: src/prefs.js:174 -msgid "The color used to paint the message on user's menu" -msgstr "De kleur van het knipperpatroon" - -#: src/prefs.js:185 -msgid "The rate that the alert blinks, in ms. 0 means no blink (default: 800)" -msgstr "" -"De snelheid waarmee wordt geknipperd, in ms. 0 = niet knipperen (standaard: " -"800)" - -#: src/prefs.js:198 -msgid "Use alert background color" -msgstr "" - -#: src/prefs.js:194 -#, fuzzy -msgid "Use alert font color" -msgstr "Meldingskleur" - -#: src/prefs.js:199 -msgid "Use the alert background color for alert blinks (default: OFF)" -msgstr "" - -#: src/prefs.js:195 -msgid "Use the alert font color for alert blinks (default: ON)" -msgstr "" - -#: src/prefs.js:141 -msgid "Whitelist" -msgstr "Witte lijst" diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/nl_NL/LC_MESSAGES/gnome-shell-notifications-alert.mo b/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/nl_NL/LC_MESSAGES/gnome-shell-notifications-alert.mo deleted file mode 100644 index 61099d64..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/nl_NL/LC_MESSAGES/gnome-shell-notifications-alert.mo and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/pt_BR.po b/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/pt_BR.po deleted file mode 100644 index a3afe930..00000000 --- a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/pt_BR.po +++ /dev/null @@ -1,116 +0,0 @@ -# Brazilian Portuguese translations for gnome-shell-notifications-alert package. -# Copyright (C) 2013 THE gnome-shell-notifications-alert's COPYRIGHT HOLDER -# This file is distributed under the same license as the gnome-shell-notifications-alert package. -# Thiago Bellini , 2013. -# -msgid "" -msgstr "" -"Project-Id-Version: gnome-shell-notifications-alert\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-12-09 21:12-0300\n" -"PO-Revision-Date: 2013-02-02 17:09-0200\n" -"Last-Translator: Thiago Bellini \n" -"Language-Team: Brazilian Portuguese\n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: src/prefs.js:276 -msgid "Add" -msgstr "Adicionar" - -#: src/prefs.js:257 -msgid "Add Rule" -msgstr "Adicionar Regra" - -#: src/prefs.js:177 -msgid "Alert background color" -msgstr "Cor de fundo do alerta" - -#: src/prefs.js:207 -msgid "Alert even if you set notifications to OFF on user menu (default: OFF)" -msgstr "" -"Alertar mesmo se as suas notificações estão desligadas no menu do usuário " -"(padrão: Desligado)" - -#: src/prefs.js:173 -msgid "Alert font color" -msgstr "Cor da fonte do alerta" - -#: src/prefs.js:241 -msgid "Application" -msgstr "Aplicativo" - -#: src/prefs.js:140 -msgid "Blacklist" -msgstr "Lista negra" - -#: src/prefs.js:271 -msgid "Blacklist app" -msgstr "Aplicativos na lista negra" - -#: src/prefs.js:184 -msgid "Blink rate (in ms)" -msgstr "Taxa de intermitência (em ms)" - -#: src/prefs.js:281 -msgid "Choose an application to blacklist:" -msgstr "Escolha um aplicativo para adicionar na lista negra:" - -#: src/prefs.js:123 -msgid "Filter List" -msgstr "Lista do filtro" - -#: src/prefs.js:133 -msgid "Filter Type" -msgstr "Tipo do filtro" - -#: src/prefs.js:206 -msgid "Force alerting even when notifications are set to OFF" -msgstr "Alerta forçado mesmo quando as notificações estão desligadas" - -#: src/prefs.js:202 -msgid "Only alert for chat notifications" -msgstr "Alertar apenas para notificações de bate-papo" - -#: src/prefs.js:203 -msgid "" -"Only chat notifications (like Empathy ones) will get alerted (default: OFF)" -msgstr "" -"Apenas notificações de bate-papo (como as do Empathy) serão alertadas " -"(padrão: Desligado)" - -#: src/prefs.js:178 -msgid "The background color used to paint the message on user's menu" -msgstr "A cor utilizada para pintar o fundo da mensagem no menu do usuário" - -#: src/prefs.js:174 -msgid "The color used to paint the message on user's menu" -msgstr "A cor utilizada para pintar a mensagem no menu do usuário" - -#: src/prefs.js:185 -msgid "The rate that the alert blinks, in ms. 0 means no blink (default: 800)" -msgstr "" -"A taxa em que o alerta pisca, em ms. 0 significa não piscar (padrão: 800)" - -#: src/prefs.js:198 -msgid "Use alert background color" -msgstr "Usar cor de fundo do alerta" - -#: src/prefs.js:194 -msgid "Use alert font color" -msgstr "Cor da fonte do alerta" - -#: src/prefs.js:199 -msgid "Use the alert background color for alert blinks (default: OFF)" -msgstr "Usar a cor de fundo do alerta ao piscar (padrão: Desligado)" - -#: src/prefs.js:195 -msgid "Use the alert font color for alert blinks (default: ON)" -msgstr "Usar a cor da fonte do alerta ao piscar (padrão: Ligado)" - -#: src/prefs.js:141 -msgid "Whitelist" -msgstr "Lista branca" diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/pt_BR/LC_MESSAGES/gnome-shell-notifications-alert.mo b/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/pt_BR/LC_MESSAGES/gnome-shell-notifications-alert.mo deleted file mode 100644 index b7aa14b4..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/pt_BR/LC_MESSAGES/gnome-shell-notifications-alert.mo and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/metadata.json b/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/metadata.json deleted file mode 100644 index 2553218d..00000000 --- a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/metadata.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "_generated": "Generated by SweetTooth, do not edit", - "description": "Whenever there is an unread notification (e.g. chat messages), blinks the message in the user's menu with a color chosen by the user.\n\nNow configurable (3.4+ only)!! Alert color and blink rate can be changed on settings ;)\n\nIf you have any question, be sure to take a look at the FAQ:\nhttp://goo.gl/lmwtW\n\nCredits: The idea of painting the message on user's menu was borrowed from 'Pidgin Persistent Notification' extension by nemo. The code itself has some parts forked from 'Message Notifier' extension by barisione, 'Media player indicator' extension by eon and convenience.js from git.gnome.org/gnome-shell-extensions. The blink idea and it's initial code was written by hossman. The initial gnome 3.10 support was done by Anthony25. The filtering support was done by ilgarmehmetali", - "name": "Notifications Alert", - "original-authors": [ - "Thiago Bellini" - ], - "shell-version": [ - "3.16", - "3.18", - "3.20", - "3.22", - "3.24", - "3.26", - "3.28", - "3.30", - "3.34", - "3.32" - ], - "url": "https://github.com/bellini666/gnome-shell-notifications-alert", - "uuid": "notifications-alert-on-user-menu@hackedbellini.gmail.com", - "version": 44 -} \ No newline at end of file diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/prefs.js b/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/prefs.js deleted file mode 100644 index ef8d05db..00000000 --- a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/prefs.js +++ /dev/null @@ -1,415 +0,0 @@ -/* - * Copyright (C) 2012 Thiago Bellini - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - * - * Most of this code was forked from media-player-indicator: - * https://extensions.gnome.org/extension/55/media-player-indicator/ - * - */ - -const GObject = imports.gi.GObject; -const Gio = imports.gi.Gio; -const Gtk = imports.gi.Gtk; -const Lang = imports.lang; - -const Gettext = imports.gettext.domain('gnome-shell-notifications-alert'); -const _ = Gettext.gettext; - -const ExtensionUtils = imports.misc.extensionUtils; -const Me = ExtensionUtils.getCurrentExtension(); -const Lib = Me.imports.lib; - -const SETTING_BLACKLIST = 'application-list'; -const SETTING_FILTER_TYPE = 'filter'; - -const Columns = { - APPINFO: 0, - DISPLAY_NAME: 1, - ICON: 2, -}; - -let settings; -let boolSettings; -let intSettings; -let colorSettings; - -function _createBoolSetting(setting) { - let hbox = new Gtk.Box({orientation: Gtk.Orientation.HORIZONTAL}); - - let settingLabel = new Gtk.Label({label: boolSettings[setting].label, - xalign: 0}); - - let settingSwitch = new Gtk.Switch({active: settings.get_boolean(setting)}); - settingSwitch.connect('notify::active', function(button) { - settings.set_boolean(setting, button.active); - }); - - if (boolSettings[setting].help) { - settingLabel.set_tooltip_text(boolSettings[setting].help); - settingSwitch.set_tooltip_text(boolSettings[setting].help); - } - - hbox.pack_start(settingLabel, true, true, 0); - hbox.add(settingSwitch); - - return hbox; -} - -function _createIntSetting(setting) { - let hbox = new Gtk.Box({orientation: Gtk.Orientation.HORIZONTAL}); - - let settingLabel = new Gtk.Label({label: intSettings[setting].label, - xalign: 0}); - - let spinButton = Gtk.SpinButton.new_with_range( - intSettings[setting].min, - intSettings[setting].max, - intSettings[setting].step) - spinButton.set_value(settings.get_int(setting)); - spinButton.connect('notify::value', function(spin) { - settings.set_int(setting, spin.get_value_as_int()); - }); - - if (intSettings[setting].help) { - settingLabel.set_tooltip_text(intSettings[setting].help); - spinButton.set_tooltip_text(intSettings[setting].help); - } - - hbox.pack_start(settingLabel, true, true, 0); - hbox.add(spinButton); - - return hbox; -} - -function _createColorSetting(setting) { - let hbox = new Gtk.Box({orientation: Gtk.Orientation.HORIZONTAL}); - - let settingLabel = new Gtk.Label({label: colorSettings[setting].label, - xalign: 0}); - - let color = Lib.getColorByHexadecimal(settings.get_string(setting)); - let colorButton = new Gtk.ColorButton(); - colorButton.set_color(color); - colorButton.connect('notify::color', function(button) { - let hex = Lib.getHexadecimalByColor(button.get_color()); - settings.set_string(setting, hex); - }); - - if (colorSettings[setting].help) { - settingLabel.set_tooltip_text(colorSettings[setting].help); - colorButton.set_tooltip_text(colorSettings[setting].help); - } - - hbox.pack_start(settingLabel, true, true, 0); - hbox.add(colorButton); - - return hbox; -} - -function _createFilterListSetting() { - let settingLabel = new Gtk.Label({label: _("Filter List"), xalign: 0}); - let widget = new Widget(); - let blbox = new Gtk.Grid({column_spacing: 5, row_spacing: 5, margin: 0}); - blbox.attach(settingLabel,0,0,1,1); - blbox.attach(widget,0,1,1,1); - return blbox; -} - -function _createFilterTypeSetting() { - let hbox = new Gtk.Box({orientation: Gtk.Orientation.HORIZONTAL}); - let settingLabel = new Gtk.Label({label: _("Filter Type"), xalign: 0}); - - let listStore = new Gtk.ListStore(); - listStore.set_column_types ([ - GObject.TYPE_STRING, - GObject.TYPE_STRING]); - - listStore.insert_with_valuesv (-1, [0, 1], [0, _("Blacklist")]); - listStore.insert_with_valuesv (-1, [0, 1], [1, _("Whitelist")]); - - let filterComboBox = new Gtk.ComboBox({ model: listStore }); - filterComboBox.set_active (settings.get_int(SETTING_FILTER_TYPE)); - filterComboBox.set_id_column(0); - - let rendererText = new Gtk.CellRendererText(); - filterComboBox.pack_start (rendererText, false); - filterComboBox.add_attribute (rendererText, "text", 1); - - filterComboBox.connect('changed', function(entry) { - let id = filterComboBox.get_active_id(); - if (id == null) - return; - settings.set_int(SETTING_FILTER_TYPE, id); - }); - - hbox.pack_start(settingLabel, true, true, 0); - hbox.add(filterComboBox); - return hbox; -} - -/* - Shell-extensions handlers -*/ - -function init() { - Lib.initTranslations(Me); - settings = Lib.getSettings(Me); - - colorSettings = { - color: { - label: _("Alert font color"), - help: _("The color used to paint the message on user's menu") - }, - backgroundcolor: { - label: _("Alert background color"), - help: _("The background color used to paint the message on user's menu") - }, - }; - - intSettings = { - blinkrate: { - label: _("Blink rate (in ms)"), - help: _("The rate that the alert blinks, in ms. 0 means no blink (default: 800)"), - min: 0, - max: 10000, - step: 1 - }, - }; - - boolSettings = { - usecolor: { - label: _("Use alert font color"), - help: _("Use the alert font color for alert blinks (default: ON)") - }, - usebackgroundcolor: { - label: _("Use alert background color"), - help: _("Use the alert background color for alert blinks (default: OFF)") - }, - chatonly: { - label: _("Only alert for chat notifications"), - help: _("Only chat notifications (like Empathy ones) will get alerted (default: OFF)") - }, - force: { - label: _("Force alerting even when notifications are set to OFF"), - help: _("Alert even if you set notifications to OFF on user menu (default: OFF)") - }, - }; -} - - -/* - Blacklist widget -*/ -const Widget = new GObject.Class({ - Name: 'NotificationsAlert.Prefs.BlackListWidget', - GTypeName: 'NotificationsAlertBlackListPrefsWidget', - Extends: Gtk.Grid, - - _init: function(params) { - this.parent(params); - this.set_orientation(Gtk.Orientation.VERTICAL); - - Lib.initTranslations(Me); - this._settings = Lib.getSettings(Me); - - this._store = new Gtk.ListStore(); - this._store.set_column_types([Gio.AppInfo, GObject.TYPE_STRING, Gio.Icon]); - - let scrolled = new Gtk.ScrolledWindow({ shadow_type: Gtk.ShadowType.IN}); - scrolled.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC); - scrolled.set_min_content_height(150); - this.add(scrolled); - - this._treeView = new Gtk.TreeView({ model: this._store, - hexpand: true, vexpand: true }); - this._treeView.get_selection().set_mode(Gtk.SelectionMode.SINGLE); - - let appColumn = new Gtk.TreeViewColumn({ expand: true, sort_column_id: Columns.DISPLAY_NAME, - title: _("Application") }); - let iconRenderer = new Gtk.CellRendererPixbuf; - appColumn.pack_start(iconRenderer, false); - appColumn.add_attribute(iconRenderer, "gicon", Columns.ICON); - let nameRenderer = new Gtk.CellRendererText; - appColumn.pack_start(nameRenderer, true); - appColumn.add_attribute(nameRenderer, "text", Columns.DISPLAY_NAME); - this._treeView.append_column(appColumn); - - scrolled.add(this._treeView); - - let toolbar = new Gtk.Toolbar({ icon_size: Gtk.IconSize.SMALL_TOOLBAR }); - toolbar.get_style_context().add_class(Gtk.STYLE_CLASS_INLINE_TOOLBAR); - this.add(toolbar); - - let newButton = new Gtk.ToolButton({ icon_name: 'bookmark-new-symbolic', - label: _("Add Rule"), - is_important: true }); - newButton.connect('clicked', Lang.bind(this, this._createNew)); - toolbar.add(newButton); - - let delButton = new Gtk.ToolButton({ icon_name: 'edit-delete-symbolic' }); - delButton.connect('clicked', Lang.bind(this, this._deleteSelected)); - toolbar.add(delButton); - - this._changedPermitted = true; - this._refresh(); - }, - - _createNew: function() { - let dialog = new Gtk.Dialog({ title: _("Blacklist app"), - transient_for: this.get_toplevel(), - use_header_bar: true, - modal: true }); - dialog.add_button(Gtk.STOCK_CANCEL, Gtk.ResponseType.CANCEL); - let addButton = dialog.add_button(_("Add"), Gtk.ResponseType.OK); - dialog.set_default_response(Gtk.ResponseType.OK); - - dialog._appChooser = new Gtk.AppChooserWidget({ show_all: true }); - - let lbl = new Gtk.Label({label: _("Choose an application to blacklist:"), - xalign: 0.5}); - let hbox = new Gtk.Box({orientation: Gtk.Orientation.VERTICAL, - margin: 5}); - hbox.pack_start(lbl, false, true, 0); - hbox.pack_start(dialog._appChooser, true, true, 0); - dialog.get_content_area().pack_start(hbox, true, true, 0); - - dialog.connect('response', Lang.bind(this, function(dialog, id) { - if (id != Gtk.ResponseType.OK) { - dialog.destroy(); - return; - } - - let appInfo = dialog._appChooser.get_app_info(); - if (!appInfo) return; - - if (this._checkId( appInfo.get_id())){ - dialog.destroy(); - return; - } - - this._changedPermitted = false; - this._appendItem(appInfo.get_id()); - this._changedPermitted = true; - - let iter = this._store.append(); - - this._store.set(iter, - [Columns.APPINFO, Columns.ICON, Columns.DISPLAY_NAME], - [appInfo, appInfo.get_icon(), appInfo.get_display_name()]); - - dialog.destroy(); - })); - - dialog.show_all(); - }, - - _deleteSelected: function() { - let [any, model, iter] = this._treeView.get_selection().get_selected(); - - if (any) { - let appInfo = this._store.get_value(iter, Columns.APPINFO); - - this._changedPermitted = false; - this._removeItem(appInfo.get_id()); - this._changedPermitted = true; - this._store.remove(iter); - } - }, - - _refresh: function() { - if (!this._changedPermitted) - // Ignore this notification, model is being modified outside - return; - - this._store.clear(); - - let currentItems = this._settings.get_strv(SETTING_BLACKLIST); - let validItems = [ ]; - for (let i = 0; i < currentItems.length; i++) { - let id = currentItems[i]; - let appInfo = Gio.DesktopAppInfo.new(id); - if (!appInfo) - continue; - validItems.push(currentItems[i]); - - let iter = this._store.append(); - this._store.set(iter, - [Columns.APPINFO, Columns.ICON, Columns.DISPLAY_NAME], - [appInfo, appInfo.get_icon(), appInfo.get_display_name()]); - } - - if (validItems.length != currentItems.length) // some items were filtered out - this._settings.set_strv(SETTING_BLACKLIST, validItems); - }, - - _checkId: function(id) { - let items = this._settings.get_strv(SETTING_BLACKLIST); - return (items.indexOf(id) != -1); - }, - - _appendItem: function(id) { - let currentItems = this._settings.get_strv(SETTING_BLACKLIST); - currentItems.push(id); - this._settings.set_strv(SETTING_BLACKLIST, currentItems); - }, - - _removeItem: function(id) { - let currentItems = this._settings.get_strv(SETTING_BLACKLIST); - let index = currentItems.indexOf(id); - - if (index < 0) - return; - currentItems.splice(index, 1); - this._settings.set_strv(SETTING_BLACKLIST, currentItems); - } -}); - -function buildPrefsWidget() { - let frame = new Gtk.Box({orientation: Gtk.Orientation.VERTICAL, - border_width: 10}); - let vbox = new Gtk.Box({orientation: Gtk.Orientation.VERTICAL, - margin: 20, margin_top: 10, spacing: 5}); - let setting; - - // Add all color settings - for (setting in colorSettings) { - let hbox = _createColorSetting(setting); - vbox.add(hbox); - } - // Add all bool settings - for (setting in boolSettings) { - let hbox = _createBoolSetting(setting); - vbox.add(hbox); - } - // Add all int settings - for (setting in intSettings) { - let hbox = _createIntSetting(setting); - vbox.add(hbox); - } - - // Add filter type setting - let filterType = _createFilterTypeSetting(); - vbox.add(filterType); - - // Add filter list - let blbox = _createFilterListSetting(); - vbox.add(blbox); - - frame.add(vbox); - frame.show_all(); - - return frame; -} diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/schemas/gschemas.compiled b/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/schemas/gschemas.compiled deleted file mode 100755 index 9e55ef23..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/schemas/gschemas.compiled and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/schemas/org.gnome.shell.extensions.notifications-alert.gschema.xml b/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/schemas/org.gnome.shell.extensions.notifications-alert.gschema.xml deleted file mode 100644 index 15cfce87..00000000 --- a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/schemas/org.gnome.shell.extensions.notifications-alert.gschema.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - - false - Force alerting even when notifications are set to OFF - Alert even if you set notifications to OFF on user menu - - - false - Only alert for chat notifications - Only chat notifications (like Empathy ones) will get alerted - - - 800 - Blink rate - The rate that the alert blinks, in ms. 0 means no blink - - - true - Use alert font color - Use the alert fontcolor for alert blinks - - - '#ff0000' - Alert font color - The color used to paint the message on user's menu - - - false - Use alert background color - Use the alert background color for alert blinks - - - '#ff0000' - Alert background color - The background color used to paint the message on user's menu - - - [ ] - Blacklist - A list of strings, each containing an application id (desktop file name), followed by a colon - - - 0 - Filter type - Filter type to use. 0 mean Blacklist, 1 means Whitelist - - - diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/sound-output-device-chooser@kgshank.net/utils/__pycache__/libpulse_introspect.cpython-39.pyc b/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/sound-output-device-chooser@kgshank.net/utils/__pycache__/libpulse_introspect.cpython-39.pyc index 0d33b1e9..0c265682 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/sound-output-device-chooser@kgshank.net/utils/__pycache__/libpulse_introspect.cpython-39.pyc and b/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/sound-output-device-chooser@kgshank.net/utils/__pycache__/libpulse_introspect.cpython-39.pyc differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/NEWS b/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/NEWS index 11fbe6d2..e7420445 100644 --- a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/NEWS +++ b/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/NEWS @@ -1,15 +1,78 @@ -3.38.2 -====== -* window-list: Honor changes in skip-taskbar property [Sergio; !130] -* window-list, workspace-indicator: Improve previews in workspace thumbs - [Florian; #260, !142] -* window-list, workspace-indicator: Adjust to 3.38 changes [Florian; !133] -* auto-move: Improve behavior on multi-monitor setups [Florian; !135] -* windowNavigator: Adjust to 3.38 changes [Thun; #259] -* Misc. bug fixes [Ray; !145] +40.1 +==== +* Disable welcome dialog in classic session [Florian; !169] +* windowsNavigator: Adjust to a late gnome-shell change [Florian; !170] Contributors: - Sergio Costas, Florian Müllner, Thun Pin, Ray Strode + Florian Müllner + +Translators: + Ngọc Quân Trần [vi], Anders Jonsson [sv], Carmen Bianca BAKKER [eo], + Pawan Chitrakar [ne], Quentin PAGÈS [oc] + +40.0 +==== + +Translators: + Jiri Grönroos [fi] + +40.rc +===== +* native-window-placement: Adjust to gnome-shell changes [Florian; !164] +* windows-navigator: Adjust to gnome-shell changes [Florian; !163] +* window-list, workspace-indicator: Only show previews for up to six workspaces + [Florian; !165] +* window-list, workspace-indicator: Improve workspace preview appearance + [Florian; !166] + +Contributors: + Florian Müllner + +Translators: + Fran Dieguez [gl] + +40.beta +======= +* Add tooltips to workspace thumbnails [Florian; !155] +* Drop arrows from top bar menus [Florian; !156] +* drive-menu: Mark mounts that can be unmounted as removable [Michael; !152] +* Remove horizontal-workspaces extension [Florian; !158] +* Adjust to shell overview changes [Florian; !159, !160] +* Fix crashes [Daniel; !157] +* Misc. bug fixes and cleanups [Florian; !154, !161] + +Contributors: + Michael Lawton, Florian Müllner, Daniel van Vugt + +Translators: + Аляксей [be], A S Alam [pa] + +40.alpha.1 +========== +* Don't depend on sassc when building from tarball [Florian; !150] +* Port extensions preferences to GTK4 [Florian; !148] +* Misc. bug fixes and cleanups [Florian, Jonas; !149, !151, !153] + +Contributors: + Jonas Dreßler, Florian Müllner + +40.alpha +======== +* window-list: Honor changes in skip-taskbar property [Sergio; !130] +* window-list, workspace-indicator: Adjust to 3.38 changes [Florian; !133] +* window-list, workspace-indicator: Improve previews in workspace thumbs + [Florian; #260, !142] +* auto-move: Improve behavior on multi-monitor setups [Florian; !135] +* windowNavigator: Adjust to 3.38 changes [Thun; #259] +* Misc. bug fixes and cleanups [Florian, Jonas Å, Jordan, Ray; !131, !136, + !137, !140, !141, !144, !146, !145] + +Contributors: + Sergio Costas, Florian Müllner, Jordan Petridis, Thun Pin, Ray Strode, + Jonas Ådahl + +Translators: + Fabio Tomat [fur], Jordi Mas [ca] 3.38.1 ====== diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/metadata.json b/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/metadata.json index b05b918d..8cabab41 100644 --- a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/metadata.json +++ b/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/metadata.json @@ -9,9 +9,9 @@ ], "settings-schema": "org.gnome.shell.extensions.user-theme", "shell-version": [ - "3.38" + "40" ], "url": "https://gitlab.gnome.org/GNOME/gnome-shell-extensions", "uuid": "user-theme@gnome-shell-extensions.gcampax.github.com", - "version": 42 + "version": 46 } \ No newline at end of file diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/prefs.js b/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/prefs.js index 241e3c98..b9c12fa0 100644 --- a/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/prefs.js +++ b/tromjaro/gnome/desktop-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/prefs.js @@ -26,18 +26,21 @@ class UserThemePrefsWidget extends Gtk.ScrolledWindow { }); const box = new Gtk.Box(); - this.add(box); + this.set_child(box); this._list = new Gtk.ListBox({ selection_mode: Gtk.SelectionMode.NONE, + show_separators: true, halign: Gtk.Align.CENTER, valign: Gtk.Align.START, hexpand: true, - margin: 60, + margin_start: 60, + margin_end: 60, + margin_top: 60, + margin_bottom: 60, }); this._list.get_style_context().add_class('frame'); - this._list.set_header_func(this._updateHeader.bind(this)); - box.add(this._list); + box.append(this._list); this._actionGroup = new Gio.SimpleActionGroup(); this._list.insert_action_group('theme', this._actionGroup); @@ -90,11 +93,10 @@ class UserThemePrefsWidget extends Gtk.ScrolledWindow { } _addTheme(name) { - const row = new ThemeRow(name); + const row = new ThemeRow(name, this._settings); this._rows.set(name, row); - this._list.add(row); - row.show_all(); + this._list.append(row); } async _enumerateDir(dir) { @@ -121,31 +123,28 @@ class UserThemePrefsWidget extends Gtk.ScrolledWindow { return fileInfos.map(info => info.get_name()); } - - _updateHeader(row, before) { - if (!before || row.get_header()) - return; - row.set_header(new Gtk.Separator()); - } }); const ThemeRow = GObject.registerClass( class ThemeRow extends Gtk.ListBoxRow { - _init(name) { - this._name = new GLib.Variant('s', name); - - super._init({ - action_name: 'theme.name', - action_target: this._name, - }); + _init(name, settings) { + this._name = name; + this._settings = settings; const box = new Gtk.Box({ spacing: 12, - margin: 12, + margin_start: 12, + margin_end: 12, + margin_top: 12, + margin_bottom: 12, + }); + super._init({ + action_name: 'theme.name', + action_target: new GLib.Variant('s', name), + child: box, }); - this.add(box); - box.add(new Gtk.Label({ + box.append(new Gtk.Label({ label: name || 'Default', hexpand: true, xalign: 0, @@ -157,24 +156,21 @@ class ThemeRow extends Gtk.ListBoxRow { icon_name: 'emblem-ok-symbolic', pixel_size: 16, }); - box.add(this._checkmark); + box.append(this._checkmark); - box.show_all(); + const id = this._settings.connect('changed::name', + this._syncCheckmark.bind(this)); + this._syncCheckmark(); - const id = this.connect('parent-set', () => { - this.disconnect(id); - - const actionGroup = this.get_action_group('theme'); - actionGroup.connect('action-state-changed::name', - this._syncCheckmark.bind(this)); - this._syncCheckmark(); + this.connect('destroy', () => { + this._settings.disconnect(id); + this._settings = null; }); } _syncCheckmark() { - const actionGroup = this.get_action_group('theme'); - const state = actionGroup.get_action_state('name'); - this._checkmark.opacity = this._name.equal(state); + const visible = this._name === this._settings.get_string('name'); + this._checkmark.opacity = visible ? 1. : 0; } }); @@ -182,8 +178,5 @@ function init() { } function buildPrefsWidget() { - let widget = new UserThemePrefsWidget(); - widget.show_all(); - - return widget; + return new UserThemePrefsWidget(); } diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/addonStartup.json.lz4 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/addonStartup.json.lz4 index 6722c647..468aff1e 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/addonStartup.json.lz4 and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/addonStartup.json.lz4 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/addons.json b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/addons.json index 3f7e0d3d..70fc4cd9 100644 --- a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/addons.json +++ b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/addons.json @@ -1 +1 @@ -{"schema":6,"addons":[{"id":"uBlock0@raymondhill.net","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/607/607454-32.png?modified=mcrushed","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/607/607454-64.png?modified=mcrushed","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/607/607454-128.png?modified=mcrushed"},"name":"uBlock Origin","version":"1.35.2","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3768975/ublock_origin-1.35.2-an+fx.xpi","homepageURL":"https://github.com/gorhill/uBlock#ublock-origin","supportURL":"https://old.reddit.com/r/uBlockOrigin/","description":"Finally, an efficient wide-spectrum content blocker. Easy on CPU and memory.","fullDescription":"uBlock Origin is not an \"ad blocker\", it's a wide-spectrum content blocker with CPU and memory efficiency as a primary feature.\n\n***\n\nOut of the box, these lists of filters are loaded and enforced:\n\n- EasyList (ads)\n- Peter Lowe’s Ad server list (ads and tracking)\n- EasyPrivacy (tracking)\n- Malware domains\n\nMore lists are available for you to select if you wish:\n\n- Fanboy’s Enhanced Tracking List\n- Dan Pollock’s hosts file\n- MVPS HOSTS\n- Spam404\n- And many others\n\nAdditionally, you can point-and-click to block JavaScript locally or globally, create your own global or local rules to override entries from filter lists, and many more advanced features.\n\n***\n\nFree.\nOpen source with public license (GPLv3)\nFor users by users.\n\nIf ever you really do want to contribute something, think about the people working hard to maintain the filter lists you are using, which were made available to use by all for free.\n\n***\n\n Documentation\n Release notes\n Community support @ Reddit\n Contributors @ GitHub\n Contributors @ Crowdin","weeklyDownloads":131594,"type":"extension","creator":{"name":"Raymond Hill","url":"https://addons.mozilla.org/en-US/firefox/user/11423598/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/238/238546.png?modified=1622132421","width":1011,"height":758,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/238/238546.jpg?modified=1622132421","thumbnailWidth":533,"thumbnailHeight":400,"caption":"The popup panel: default mode"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/238/238548.png?modified=1622132423","width":1011,"height":758,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/238/238548.jpg?modified=1622132423","thumbnailWidth":533,"thumbnailHeight":400,"caption":"The dashboard: stock filter lists"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/238/238547.png?modified=1622132425","width":1011,"height":758,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/238/238547.jpg?modified=1622132425","thumbnailWidth":533,"thumbnailHeight":400,"caption":"The popup panel: default-deny mode"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/238/238549.png?modified=1622132426","width":1011,"height":758,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/238/238549.jpg?modified=1622132426","thumbnailWidth":533,"thumbnailHeight":400,"caption":"The dashboard: settings"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/238/238552.png?modified=1622132430","width":970,"height":1800,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/238/238552.jpg?modified=1622132430","thumbnailWidth":216,"thumbnailHeight":400,"caption":"The popup panel in Firefox Preview: default mode with more blocking options revealed"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/230/230370.png?modified=1622132432","width":800,"height":600,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/230/230370.jpg?modified=1622132432","thumbnailWidth":533,"thumbnailHeight":400,"caption":"The unified logger tells you all that uBO is seeing and doing"}],"contributionURL":"","averageRating":4.7666,"reviewCount":3274,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/reviews/","updateDate":1622985028000},{"id":"{b9db16a4-6edc-47ec-a1f4-b86292ed211d}","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/3/3006-32.png?modified=mcrushed","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/3/3006-64.png?modified=mcrushed","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/3/3006-128.png?modified=mcrushed"},"name":"Video DownloadHelper","version":"7.4.0","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3695227/video_downloadhelper-7.4.0-fx.xpi","homepageURL":"http://www.downloadhelper.net/","supportURL":"http://www.downloadhelper.net/support.php","description":"The easy way to download and convert Web videos from hundreds of YouTube-like sites.","fullDescription":"Video DownloadHelper is the most complete tool for extracting videos and image files from websites and saving them to your hard drive.\n\nJust surf the web as you normally do. When DownloadHelper detects embedded videos it can access for download, the toolbar icon highlights and a simple menu allows you to download files by simply clicking an item.\n\nFor instance, if you go to a YouTube page, you'll be able to download the video directly on your file system. It also works with most other popular video sites like DailyMotion, Facebook, Periscope, Vimeo, Twitch, Liveleak, Vine, UStream, Fox, Bloomberg, RAI, France 2-3, Break, Metacafe, and thousands of others.\n\nVideo DownloadHelper supports several types of streamings, making the add-on unique amongst Video downloaders: HTTP, HLS, DASH, … Whenever a site uses a non-supported streaming technology, Video DownloadHelper is able to capture the media directly from the screen and generate a video file.\n\nBesides downloading, Video DownloadHelper is also capable of making file conversions (i.e. change audio and video formats) and aggregation (combining separate audio and video into a single file). This is an upgrade feature that helps pay for the free stuff (we need to eat too). You are not compelled to use conversion for downloading videos from websites, and you can avoid picking variants marked as ADP to avoid the need for aggregation.\n\nVideo overview on how to use Video DownloadHelper: https://www.youtube.com/watch?v=mZT8yI60k_4\n\nSupport can be obtained from the dedicated support forum.\n\nPlease stay tuned by following us on Twitter (@downloadhelper), or Facebook.","weeklyDownloads":64921,"type":"extension","creator":{"name":"mig","url":"https://addons.mozilla.org/en-US/firefox/user/32479/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/25/25993.png?modified=1622132280","width":200,"height":150,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/25/25993.jpg?modified=1622132280","thumbnailWidth":200,"thumbnailHeight":150,"caption":"Video DownloadHelper"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/154/154820.png?modified=1622132280","width":327,"height":124,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/154/154820.jpg?modified=1622132280","thumbnailWidth":327,"thumbnailHeight":124,"caption":"Video DownloadHelper animated toobar icon"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/154/154824.png?modified=1622132280","width":250,"height":200,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/154/154824.jpg?modified=1622132280","thumbnailWidth":250,"thumbnailHeight":200,"caption":"Video DownloadHelper main panel"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/154/154822.png?modified=1622132280","width":361,"height":289,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/154/154822.jpg?modified=1622132280","thumbnailWidth":361,"thumbnailHeight":289,"caption":"Video DownloadHelper main panel"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/154/154826.png?modified=1622132281","width":320,"height":317,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/154/154826.jpg?modified=1622132281","thumbnailWidth":320,"thumbnailHeight":317,"caption":"Video DownloadHelper available actions"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/154/154828.png?modified=1622132281","width":293,"height":250,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/154/154828.jpg?modified=1622132281","thumbnailWidth":293,"thumbnailHeight":250,"caption":"Video DownloadHelper quality variants settings"}],"contributionURL":"","averageRating":4.2803,"reviewCount":11319,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/video-downloadhelper/reviews/","updateDate":1621953924000},{"id":"jid1-MnnxcxisBPnSXQ@jetpack","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/506/506646-32.png?modified=mcrushed","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/506/506646-64.png?modified=mcrushed","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/506/506646-128.png?modified=mcrushed"},"name":"Privacy Badger","version":"2021.2.2","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3719726/privacy_badger-2021.2.2-an+fx.xpi","homepageURL":"https://privacybadger.org/","supportURL":"https://privacybadger.org/#faq","description":"Automatically learns to block invisible trackers.","fullDescription":"Privacy Badger automatically learns to block invisible trackers. Instead of keeping lists of what to block, Privacy Badger automatically discovers trackers based on their behavior.\n\nPrivacy Badger sends the Global Privacy Control signal to opt you out of data sharing and selling, and the Do Not Track signal to tell companies not to track you. If trackers ignore your wishes, Privacy Badger will learn to block them.\n\nBesides automatic tracker blocking, Privacy Badger replaces potentially useful trackers (video players, comments widgets, etc.) with click-to-activate placeholders, and removes outgoing link click tracking on Facebook and Google, with more privacy protections on the way.\n\nTo learn more, see the FAQ on Privacy Badger's homepage.","weeklyDownloads":23701,"type":"extension","creator":{"name":"EFF Technologists","url":"https://addons.mozilla.org/en-US/firefox/user/5474073/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/225/225184.png?modified=1622132341","width":1920,"height":1080,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/225/225184.jpg?modified=1622132341","thumbnailWidth":533,"thumbnailHeight":300,"caption":"Privacy Badger is a project of the Electronic Frontier Foundation"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/171/171793.png?modified=1622132342","width":700,"height":394,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/171/171793.jpg?modified=1622132342","thumbnailWidth":533,"thumbnailHeight":300,"caption":"Privacy Badger at work on the whitehouse.gov privacy policy page."}],"contributionURL":"https://www.paypal.me/SupportEFF?utm_content=product-page-contribute&utm_medium=referral&utm_source=addons.mozilla.org","averageRating":4.7898,"reviewCount":368,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/privacy-badger17/reviews/","updateDate":1612293514000},{"id":"chrome-gnome-shell@gnome.org","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/751/751081-32.png?modified=1521616823","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/751/751081-64.png?modified=1521616823","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/751/751081-128.png?modified=1521616823"},"name":"GNOME Shell integration","version":"10.1","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/898030/gnome_shell_integration-10.1-an+fx-linux.xpi","homepageURL":"https://wiki.gnome.org/Projects/GnomeShellIntegrationForChrome","supportURL":"https://bugzilla.gnome.org","description":"This extension provides integration with GNOME Shell and the corresponding extensions repository https://extensions.gnome.org","fullDescription":"You MUST install native connector for this extension to work.\n\nFor Arch Linux there is a PKGBUILD available in the AUR: https://aur.archlinux.org/packages/chrome-gnome-shell-git\n\nFor Debian, Fedora, Gentoo and Ubuntu you can install package named \"chrome-gnome-shell\".\n\nYou also can install connector manually. See https://wiki.gnome.org/Projects/GnomeShellIntegrationForChrome/Installation for install instructions.","weeklyDownloads":1463,"type":"extension","creator":{"name":"Yuri Konotopov","url":"https://addons.mozilla.org/en-US/firefox/user/12725919/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/183/183915.png?modified=1622132636","width":700,"height":438,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/183/183915.jpg?modified=1622132636","thumbnailWidth":533,"thumbnailHeight":334}],"contributionURL":"","averageRating":4.3333,"reviewCount":66,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/gnome-shell-integration/reviews/","updateDate":1521613807000},{"id":"{9350bc42-47fb-4598-ae0f-825e3dd9ceba}","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/918/918574-32.png?modified=1531770407","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/918/918574-64.png?modified=1531770407","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/918/918574-128.png?modified=1531770407"},"name":"Absolute Enable Right Click & Copy","version":"1.3.8","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/1205179/absolute_enable_right_click_copy-1.3.8-fx.xpi","homepageURL":null,"supportURL":null,"description":"Force Enable Right Click & Copy","fullDescription":"Get The Best Browsing Experience Without Limitations And Restrictions In An Online World\n\n★ Features :\n→ Remove Copy Text Protection On All Website\n→ Force Enable Right Click Button\n→ Allow Copy And Highlight\n→ Disable Annoying Dialog Message (Not Able To Copy Content On This Webpage)\n→ Re-Enable Context Menu\n→ Include \"Absolute Mode\" To Force Remove Any Type Of Protection\n\n------------------------------------------------------------------------\nIf You Like This Extension, Please Rate And Share\nMade Possible By Absolute","weeklyDownloads":2125,"type":"extension","creator":{"name":"Absolute","url":"https://addons.mozilla.org/en-US/firefox/user/13673741/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/204/204829.png?modified=1622132943","width":640,"height":400,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/204/204829.jpg?modified=1622132943","thumbnailWidth":533,"thumbnailHeight":333,"caption":"01"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/204/204830.png?modified=1622132944","width":640,"height":400,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/204/204830.jpg?modified=1622132944","thumbnailWidth":533,"thumbnailHeight":333,"caption":"02"}],"contributionURL":"","averageRating":4.5725,"reviewCount":171,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/absolute-enable-right-click/reviews/","updateDate":1547160307000},{"id":"keepassxc-browser@keepassxc.org","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/917/917354-32.png?modified=1586435702","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/917/917354-64.png?modified=1586435702","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/917/917354-128.png?modified=1586435702"},"name":"KeePassXC-Browser","version":"1.7.8.1","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3758952/keepassxc_browser-1.7.8.1-fx.xpi","homepageURL":"https://keepassxc.org/","supportURL":"https://github.com/keepassxreboot/keepassxc-browser","description":"Official browser plugin for the KeePassXC password manager (https://keepassxc.org).","fullDescription":"Official browser plugin for the KeePassXC password manager (https://keepassxc.org).\n\nThe thing computers can do best is storing information.\nYou shouldn't waste your time trying to remember and type your passwords.\nKeePassXC can store your passwords safely and auto-type them into your everyday websites and applications.","weeklyDownloads":1721,"type":"extension","creator":{"name":"KeePassXC Team","url":"https://addons.mozilla.org/en-US/firefox/user/13036987/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/197/197999.png?modified=1622132902","width":700,"height":198,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/197/197999.jpg?modified=1622132902","thumbnailWidth":533,"thumbnailHeight":151,"caption":"KeePassXC"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/234/234592.png?modified=1622132905","width":1513,"height":1047,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/234/234592.jpg?modified=1622132905","thumbnailWidth":533,"thumbnailHeight":369,"caption":"Settings page"}],"contributionURL":"https://www.paypal.me/jbevendorff?utm_content=product-page-contribute&utm_medium=referral&utm_source=addons.mozilla.org","averageRating":4.336,"reviewCount":164,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/keepassxc-browser/reviews/","updateDate":1618234520000},{"id":"wayback_machine@mozilla.org","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/711/711438-32.png?modified=1524082823","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/711/711438-64.png?modified=1524082823","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/711/711438-128.png?modified=1524082823"},"name":"Wayback Machine","version":"1.8.6","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/929315/wayback_machine-1.8.6-an+fx.xpi","homepageURL":null,"supportURL":"http://web.archive.org","description":"Detects dead pages, 404s, DNS failures & a range of other web breakdowns, offering to show archived versions via the Internet Archive's Wayback Machine. In addition you can archive web pages, and see their most recent & first archives.","fullDescription":"Detects dead pages, 404s, DNS failures & a range of other web breakdowns, offering to show archived versions via the Internet Archive's Wayback Machine. In addition you can archive web pages, and see their most recent & first archives.\n\nIf you used No More 404s on Test Pilot, this extention is for you!","weeklyDownloads":276,"type":"extension","creator":{"name":"Internet Archive","url":"https://addons.mozilla.org/en-US/firefox/user/12373129/"},"developers":[{"name":"Mark Graham","url":"https://addons.mozilla.org/en-US/firefox/user/12835321/"}],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/182/182679.png?modified=1622132569","width":199,"height":249,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/182/182679.jpg?modified=1622132569","thumbnailWidth":199,"thumbnailHeight":249,"caption":"Save an archive or a URL to the Wayback Machine or see the first, or most recent, archive of that URL."},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/182/182680.png?modified=1622132569","width":700,"height":330,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/182/182680.jpg?modified=1622132569","thumbnailWidth":533,"thumbnailHeight":251,"caption":"If there is an archive in the Wayback Machine, of a page not available via the \"live web\" you will be shown this pop-up."}],"contributionURL":"","averageRating":3.8511,"reviewCount":106,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/wayback-machine_new/reviews/","updateDate":1524081009000},{"id":"{b7f9d2cd-d772-4302-8c3f-eb941af36f76}","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/2600/2600548-32.png?modified=b183bc03","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/2600/2600548-64.png?modified=b183bc03","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/2600/2600548-128.png?modified=b183bc03"},"name":"Privacy Redirect","version":"1.1.47","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3761053/privacy_redirect-1.1.47-an+fx.xpi","homepageURL":"https://github.com/SimonBrazell/privacy-redirect","supportURL":"https://github.com/SimonBrazell/privacy-redirect","description":"Redirects Twitter, YouTube, Instagram and more to privacy friendly alternatives.","fullDescription":"Redirects Twitter, YouTube, Instagram, & Google Maps requests to privacy friendly alternatives - Nitter, Invidious, Bibliogram, & OpenStreetMap.\n\nAllows for setting custom instances, toggling all redirects on/off and more.\n\n★ More Info: ℹ️\n\n Nitter\n Invidious\n Bibliogram\n OpenStreetMap\n\n\nThe code for this web extension is available on Github.\n\n★ Donate: 👨🏻‍💻\nIf you like this extension and are financially able please consider buying me a coffee ☕️ to show your appreciation and support the continuation of the project.\n\n★ What's New in This Version (v1.1.47) 🆕\n\n Add Turkish translation.\n Update Russian translation.\n Update included instance lists.\n Fixed an issue causing users difficulty when selecting instances from the instance dropdown lists.\n Fixed Nitter redirects for usernames containing the word \"tweets\".\n Disable OSM redirects for Google Earth.\n Improved Reddit redirects.\n See commit history here\n\n\n★ Permissions: ℹ️\n\n Please note, access to all website navigation events ( all URLs), not just the target domains, is required to allow embedded video redirects to occur. At this time I know of no other way to achieve iframe redirects, happy to hear some suggestions on this though 🙂","weeklyDownloads":203,"type":"extension","creator":{"name":"Simon Brazell","url":"https://addons.mozilla.org/en-US/firefox/user/15274891/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/241/241463.png?modified=1622134888","width":2400,"height":1500,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/241/241463.jpg?modified=1622134888","thumbnailWidth":533,"thumbnailHeight":333,"caption":"Nitter"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/241/241464.png?modified=1622134905","width":2400,"height":1500,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/241/241464.jpg?modified=1622134905","thumbnailWidth":533,"thumbnailHeight":333,"caption":"Invidious"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/241/241465.png?modified=1622134912","width":2400,"height":1500,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/241/241465.jpg?modified=1622134912","thumbnailWidth":533,"thumbnailHeight":333,"caption":"Bibliogram"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/241/241466.png?modified=1622134928","width":2400,"height":1500,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/241/241466.jpg?modified=1622134928","thumbnailWidth":533,"thumbnailHeight":333,"caption":"OpenStreetMap"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/241/241467.png?modified=1622134936","width":2400,"height":1500,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/241/241467.jpg?modified=1622134936","thumbnailWidth":533,"thumbnailHeight":333,"caption":"Options"}],"contributionURL":"https://www.buymeacoffee.com/SimonBrazell?utm_content=product-page-contribute&utm_medium=referral&utm_source=addons.mozilla.org","averageRating":4.7925,"reviewCount":26,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/privacy-redirect/reviews/","updateDate":1618543221000},{"id":"{5173bfae-59df-4a20-a9dd-0ab3e8c82e36}","icons":{"32":"https://addons.cdn.mozilla.net/static/img/addon-icons/default-32.png?v=20210601","64":"https://addons.cdn.mozilla.net/static/img/addon-icons/default-64.png?v=20210601","128":"https://addons.cdn.mozilla.net/static/img/addon-icons/default-128.png?v=20210601"},"name":"Sci-Hub X Now!","version":"0.1.0","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3706836/sci_hub_x_now-0.1.0-an+fx.xpi","homepageURL":"https://github.com/gchenfc/sci-hub-now","supportURL":"https://github.com/gchenfc/sci-hub-now","description":"Opens the sci-hub page for the article you want to read.\nA continuation of https://addons.mozilla.org/en-US/firefox/addon/sci-hub-now/ by developer 0x01h who is no longer maintaining the original extension.","fullDescription":"When on a publisher's page for an academic article, click the sci-hub \"bird\" icon to go to the corresponding sci-hub page.\nWorks by searching for the doi anywhere on the page.\n\nAllows you to change the sci-hub domain in \"preferences\" in case sci-hub mirror changes.\n\nNote: this was originally made by 0x01h but he no longer maintains it. I have made minor modifications and will continue maintaining it until at least 2024.","weeklyDownloads":97,"type":"extension","creator":{"name":"Gerry","url":"https://addons.mozilla.org/en-US/firefox/user/16354622/"},"developers":[],"screenshots":[],"contributionURL":"","averageRating":5,"reviewCount":9,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/sci-hub-x-now/reviews/","updateDate":1610323518000},{"id":"yayanotherspeeddial@bakadev.fr","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/908/908898-32.png?modified=1614616677","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/908/908898-64.png?modified=1614616677","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/908/908898-128.png?modified=1614616677"},"name":"Yay! Another Speed dial!","version":"1.5.2.1","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3775587/yay_another_speed_dial-1.5.2.1-an+fx.xpi","homepageURL":"https://www.yayspeeddial.com/","supportURL":null,"description":"A cool and highly customizable Speed Dial focused on style and simplicity.","fullDescription":"Yay! Another Speed dial! is an extension to replace the home page when opening the browser or a new tab.\nYou can organize your bookmarks by tabs to quickly access your favorite sites.\nA theme editor makes it possible to completely personalize your homepage as you wish!\n\nfeatures\n- Fully customize your homepage or use one of our already created themes.\n- Fully responsive design\n- Organize your bookmarks by tabs\n- Easily add the site you are visiting to one of the tabs you have created","weeklyDownloads":10,"type":"extension","creator":{"name":"Mimiste","url":"https://addons.mozilla.org/en-US/firefox/user/13536280/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/198/198155.png?modified=1622132895","width":700,"height":438,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/198/198155.jpg?modified=1622132895","thumbnailWidth":533,"thumbnailHeight":334,"caption":"Home page"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/198/198156.png?modified=1622132895","width":700,"height":438,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/198/198156.jpg?modified=1622132895","thumbnailWidth":533,"thumbnailHeight":334,"caption":"Theme editor (Page)"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/198/198157.png?modified=1622132895","width":700,"height":438,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/198/198157.jpg?modified=1622132895","thumbnailWidth":533,"thumbnailHeight":334,"caption":"Theme editor (Dials)"}],"contributionURL":"https://www.paypal.com/donate/?token=PbH2msRz-nbqfCjJzSxg38MWE619YgzqzXP3yWxU7xm8DFWg-UpUHI-SNsrG_Ddrbo7GAG&country.x=FR&locale.x=&utm_content=product-page-contribute&utm_medium=referral&utm_source=addons.mozilla.org","averageRating":4.2078,"reviewCount":59,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/yay-another-speed-dial/reviews/","updateDate":1620892533000}]} \ No newline at end of file +{"schema":6,"addons":[{"id":"uBlock0@raymondhill.net","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/607/607454-32.png?modified=mcrushed","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/607/607454-64.png?modified=mcrushed","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/607/607454-128.png?modified=mcrushed"},"name":"uBlock Origin","version":"1.36.2","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3806442/ublock_origin-1.36.2-an+fx.xpi","homepageURL":"https://github.com/gorhill/uBlock#ublock-origin","supportURL":"https://old.reddit.com/r/uBlockOrigin/","description":"Finally, an efficient wide-spectrum content blocker. Easy on CPU and memory.","fullDescription":"uBlock Origin is not an \"ad blocker\", it's a wide-spectrum content blocker with CPU and memory efficiency as a primary feature.\n\n***\n\nOut of the box, these lists of filters are loaded and enforced:\n\n- EasyList (ads)\n- Peter Lowe’s Ad server list (ads and tracking)\n- EasyPrivacy (tracking)\n- Malware domains\n\nMore lists are available for you to select if you wish:\n\n- Fanboy’s Enhanced Tracking List\n- Dan Pollock’s hosts file\n- MVPS HOSTS\n- Spam404\n- And many others\n\nAdditionally, you can point-and-click to block JavaScript locally or globally, create your own global or local rules to override entries from filter lists, and many more advanced features.\n\n***\n\nFree.\nOpen source with public license (GPLv3)\nFor users by users.\n\nIf ever you really do want to contribute something, think about the people working hard to maintain the filter lists you are using, which were made available to use by all for free.\n\n***\n\n Documentation\n Release notes\n Community support @ Reddit\n Contributors @ GitHub\n Contributors @ Crowdin","weeklyDownloads":109013,"type":"extension","creator":{"name":"Raymond Hill","url":"https://addons.mozilla.org/en-US/firefox/user/11423598/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/238/238546.png?modified=1622132421","width":1011,"height":758,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/238/238546.jpg?modified=1622132421","thumbnailWidth":533,"thumbnailHeight":400,"caption":"The popup panel: default mode"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/238/238548.png?modified=1622132423","width":1011,"height":758,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/238/238548.jpg?modified=1622132423","thumbnailWidth":533,"thumbnailHeight":400,"caption":"The dashboard: stock filter lists"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/238/238547.png?modified=1622132425","width":1011,"height":758,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/238/238547.jpg?modified=1622132425","thumbnailWidth":533,"thumbnailHeight":400,"caption":"The popup panel: default-deny mode"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/238/238549.png?modified=1622132426","width":1011,"height":758,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/238/238549.jpg?modified=1622132426","thumbnailWidth":533,"thumbnailHeight":400,"caption":"The dashboard: settings"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/238/238552.png?modified=1622132430","width":970,"height":1800,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/238/238552.jpg?modified=1622132430","thumbnailWidth":216,"thumbnailHeight":400,"caption":"The popup panel in Firefox Preview: default mode with more blocking options revealed"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/230/230370.png?modified=1622132432","width":800,"height":600,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/230/230370.jpg?modified=1622132432","thumbnailWidth":533,"thumbnailHeight":400,"caption":"The unified logger tells you all that uBO is seeing and doing"}],"contributionURL":"","averageRating":4.7676,"reviewCount":3314,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/reviews/","updateDate":1626129636000},{"id":"{b9db16a4-6edc-47ec-a1f4-b86292ed211d}","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/3/3006-32.png?modified=mcrushed","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/3/3006-64.png?modified=mcrushed","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/3/3006-128.png?modified=mcrushed"},"name":"Video DownloadHelper","version":"7.6.0","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3804074/video_downloadhelper-7.6.0-fx.xpi","homepageURL":"http://www.downloadhelper.net/","supportURL":"http://www.downloadhelper.net/support.php","description":"The easy way to download and convert Web videos from hundreds of YouTube-like sites.","fullDescription":"Video DownloadHelper is the most complete tool for extracting videos and image files from websites and saving them to your hard drive.\n\nJust surf the web as you normally do. When DownloadHelper detects embedded videos it can access for download, the toolbar icon highlights and a simple menu allows you to download files by simply clicking an item.\n\nFor instance, if you go to a YouTube page, you'll be able to download the video directly on your file system. It also works with most other popular video sites like DailyMotion, Facebook, Periscope, Vimeo, Twitch, Liveleak, Vine, UStream, Fox, Bloomberg, RAI, France 2-3, Break, Metacafe, and thousands of others.\n\nVideo DownloadHelper supports several types of streamings, making the add-on unique amongst Video downloaders: HTTP, HLS, DASH, … Whenever a site uses a non-supported streaming technology, Video DownloadHelper is able to capture the media directly from the screen and generate a video file.\n\nBesides downloading, Video DownloadHelper is also capable of making file conversions (i.e. change audio and video formats) and aggregation (combining separate audio and video into a single file). This is an upgrade feature that helps pay for the free stuff (we need to eat too). You are not compelled to use conversion for downloading videos from websites, and you can avoid picking variants marked as ADP to avoid the need for aggregation.\n\nVideo overview on how to use Video DownloadHelper: https://www.youtube.com/watch?v=mZT8yI60k_4\n\nSupport can be obtained from the dedicated support forum.\n\nPlease stay tuned by following us on Twitter (@downloadhelper), or Facebook.","weeklyDownloads":57202,"type":"extension","creator":{"name":"mig","url":"https://addons.mozilla.org/en-US/firefox/user/32479/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/25/25993.png?modified=1622132280","width":200,"height":150,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/25/25993.jpg?modified=1622132280","thumbnailWidth":200,"thumbnailHeight":150,"caption":"Video DownloadHelper"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/154/154820.png?modified=1622132280","width":327,"height":124,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/154/154820.jpg?modified=1622132280","thumbnailWidth":327,"thumbnailHeight":124,"caption":"Video DownloadHelper animated toobar icon"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/154/154824.png?modified=1622132280","width":250,"height":200,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/154/154824.jpg?modified=1622132280","thumbnailWidth":250,"thumbnailHeight":200,"caption":"Video DownloadHelper main panel"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/154/154822.png?modified=1622132280","width":361,"height":289,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/154/154822.jpg?modified=1622132280","thumbnailWidth":361,"thumbnailHeight":289,"caption":"Video DownloadHelper main panel"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/154/154826.png?modified=1622132281","width":320,"height":317,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/154/154826.jpg?modified=1622132281","thumbnailWidth":320,"thumbnailHeight":317,"caption":"Video DownloadHelper available actions"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/154/154828.png?modified=1622132281","width":293,"height":250,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/154/154828.jpg?modified=1622132281","thumbnailWidth":293,"thumbnailHeight":250,"caption":"Video DownloadHelper quality variants settings"}],"contributionURL":"","averageRating":4.279,"reviewCount":11503,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/video-downloadhelper/reviews/","updateDate":1625506245000},{"id":"jid1-MnnxcxisBPnSXQ@jetpack","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/506/506646-32.png?modified=mcrushed","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/506/506646-64.png?modified=mcrushed","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/506/506646-128.png?modified=mcrushed"},"name":"Privacy Badger","version":"2021.6.8","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3792149/privacy_badger-2021.6.8-an+fx.xpi","homepageURL":"https://privacybadger.org/","supportURL":"https://privacybadger.org/#faq","description":"Automatically learns to block invisible trackers.","fullDescription":"Privacy Badger automatically learns to block invisible trackers. Instead of keeping lists of what to block, Privacy Badger automatically discovers trackers based on their behavior.\n\nPrivacy Badger sends the Global Privacy Control signal to opt you out of data sharing and selling, and the Do Not Track signal to tell companies not to track you. If trackers ignore your wishes, Privacy Badger will learn to block them.\n\nBesides automatic tracker blocking, Privacy Badger replaces potentially useful trackers (video players, comments widgets, etc.) with click-to-activate placeholders, and removes outgoing link click tracking on Facebook and Google, with more privacy protections on the way.\n\nTo learn more, see the FAQ on Privacy Badger's homepage.","weeklyDownloads":15222,"type":"extension","creator":{"name":"EFF Technologists","url":"https://addons.mozilla.org/en-US/firefox/user/5474073/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/225/225184.png?modified=1622132341","width":1920,"height":1080,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/225/225184.jpg?modified=1622132341","thumbnailWidth":533,"thumbnailHeight":300,"caption":"Privacy Badger is a project of the Electronic Frontier Foundation"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/171/171793.png?modified=1622132342","width":700,"height":394,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/171/171793.jpg?modified=1622132342","thumbnailWidth":533,"thumbnailHeight":300,"caption":"Privacy Badger at work on the whitehouse.gov privacy policy page."}],"contributionURL":"https://www.paypal.me/SupportEFF?utm_content=product-page-contribute&utm_medium=referral&utm_source=addons.mozilla.org","averageRating":4.7886,"reviewCount":371,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/privacy-badger17/reviews/","updateDate":1623333558000},{"id":"chrome-gnome-shell@gnome.org","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/751/751081-32.png?modified=1521616823","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/751/751081-64.png?modified=1521616823","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/751/751081-128.png?modified=1521616823"},"name":"GNOME Shell integration","version":"10.1","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/898030/gnome_shell_integration-10.1-an+fx-linux.xpi","homepageURL":"https://wiki.gnome.org/Projects/GnomeShellIntegrationForChrome","supportURL":"https://bugzilla.gnome.org","description":"This extension provides integration with GNOME Shell and the corresponding extensions repository https://extensions.gnome.org","fullDescription":"You MUST install native connector for this extension to work.\n\nFor Arch Linux there is a PKGBUILD available in the AUR: https://aur.archlinux.org/packages/chrome-gnome-shell-git\n\nFor Debian, Fedora, Gentoo and Ubuntu you can install package named \"chrome-gnome-shell\".\n\nYou also can install connector manually. See https://wiki.gnome.org/Projects/GnomeShellIntegrationForChrome/Installation for install instructions.","weeklyDownloads":1308,"type":"extension","creator":{"name":"Yuri Konotopov","url":"https://addons.mozilla.org/en-US/firefox/user/12725919/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/183/183915.png?modified=1622132636","width":700,"height":438,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/183/183915.jpg?modified=1622132636","thumbnailWidth":533,"thumbnailHeight":334}],"contributionURL":"","averageRating":4.3245,"reviewCount":67,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/gnome-shell-integration/reviews/","updateDate":1521613807000},{"id":"{9350bc42-47fb-4598-ae0f-825e3dd9ceba}","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/918/918574-32.png?modified=1531770407","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/918/918574-64.png?modified=1531770407","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/918/918574-128.png?modified=1531770407"},"name":"Absolute Enable Right Click & Copy","version":"1.3.8","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/1205179/absolute_enable_right_click_copy-1.3.8-fx.xpi","homepageURL":null,"supportURL":null,"description":"Force Enable Right Click & Copy","fullDescription":"Get The Best Browsing Experience Without Limitations And Restrictions In An Online World\n\n★ Features :\n→ Remove Copy Text Protection On All Website\n→ Force Enable Right Click Button\n→ Allow Copy And Highlight\n→ Disable Annoying Dialog Message (Not Able To Copy Content On This Webpage)\n→ Re-Enable Context Menu\n→ Include \"Absolute Mode\" To Force Remove Any Type Of Protection\n\n------------------------------------------------------------------------\nIf You Like This Extension, Please Rate And Share\nMade Possible By Absolute","weeklyDownloads":1847,"type":"extension","creator":{"name":"Absolute","url":"https://addons.mozilla.org/en-US/firefox/user/13673741/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/204/204829.png?modified=1622132943","width":640,"height":400,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/204/204829.jpg?modified=1622132943","thumbnailWidth":533,"thumbnailHeight":333,"caption":"01"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/204/204830.png?modified=1622132944","width":640,"height":400,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/204/204830.jpg?modified=1622132944","thumbnailWidth":533,"thumbnailHeight":333,"caption":"02"}],"contributionURL":"","averageRating":4.5639,"reviewCount":175,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/absolute-enable-right-click/reviews/","updateDate":1547160307000},{"id":"keepassxc-browser@keepassxc.org","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/917/917354-32.png?modified=1586435702","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/917/917354-64.png?modified=1586435702","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/917/917354-128.png?modified=1586435702"},"name":"KeePassXC-Browser","version":"1.7.8.1","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3758952/keepassxc_browser-1.7.8.1-fx.xpi","homepageURL":"https://keepassxc.org/","supportURL":"https://github.com/keepassxreboot/keepassxc-browser","description":"Official browser plugin for the KeePassXC password manager (https://keepassxc.org).","fullDescription":"Official browser plugin for the KeePassXC password manager (https://keepassxc.org).\n\nThe thing computers can do best is storing information.\nYou shouldn't waste your time trying to remember and type your passwords.\nKeePassXC can store your passwords safely and auto-type them into your everyday websites and applications.","weeklyDownloads":1443,"type":"extension","creator":{"name":"KeePassXC Team","url":"https://addons.mozilla.org/en-US/firefox/user/13036987/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/197/197999.png?modified=1622132902","width":700,"height":198,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/197/197999.jpg?modified=1622132902","thumbnailWidth":533,"thumbnailHeight":151,"caption":"KeePassXC"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/234/234592.png?modified=1622132905","width":1513,"height":1047,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/234/234592.jpg?modified=1622132905","thumbnailWidth":533,"thumbnailHeight":369,"caption":"Settings page"}],"contributionURL":"https://www.paypal.me/jbevendorff?utm_content=product-page-contribute&utm_medium=referral&utm_source=addons.mozilla.org","averageRating":4.3217,"reviewCount":169,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/keepassxc-browser/reviews/","updateDate":1618234520000},{"id":"wayback_machine@mozilla.org","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/711/711438-32.png?modified=1524082823","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/711/711438-64.png?modified=1524082823","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/711/711438-128.png?modified=1524082823"},"name":"Wayback Machine","version":"1.8.6","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/929315/wayback_machine-1.8.6-an+fx.xpi","homepageURL":null,"supportURL":"http://web.archive.org","description":"Detects dead pages, 404s, DNS failures & a range of other web breakdowns, offering to show archived versions via the Internet Archive's Wayback Machine. In addition you can archive web pages, and see their most recent & first archives.","fullDescription":"Detects dead pages, 404s, DNS failures & a range of other web breakdowns, offering to show archived versions via the Internet Archive's Wayback Machine. In addition you can archive web pages, and see their most recent & first archives.\n\nIf you used No More 404s on Test Pilot, this extention is for you!","weeklyDownloads":272,"type":"extension","creator":{"name":"Internet Archive","url":"https://addons.mozilla.org/en-US/firefox/user/12373129/"},"developers":[{"name":"Mark Graham","url":"https://addons.mozilla.org/en-US/firefox/user/12835321/"}],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/182/182679.png?modified=1622132569","width":199,"height":249,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/182/182679.jpg?modified=1622132569","thumbnailWidth":199,"thumbnailHeight":249,"caption":"Save an archive or a URL to the Wayback Machine or see the first, or most recent, archive of that URL."},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/182/182680.png?modified=1622132569","width":700,"height":330,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/182/182680.jpg?modified=1622132569","thumbnailWidth":533,"thumbnailHeight":251,"caption":"If there is an archive in the Wayback Machine, of a page not available via the \"live web\" you will be shown this pop-up."}],"contributionURL":"","averageRating":3.8148,"reviewCount":107,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/wayback-machine_new/reviews/","updateDate":1524081009000},{"id":"{b7f9d2cd-d772-4302-8c3f-eb941af36f76}","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/2600/2600548-32.png?modified=b183bc03","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/2600/2600548-64.png?modified=b183bc03","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/2600/2600548-128.png?modified=b183bc03"},"name":"Privacy Redirect","version":"1.1.48","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3807896/privacy_redirect-1.1.48-an+fx.xpi","homepageURL":"https://github.com/SimonBrazell/privacy-redirect","supportURL":"https://github.com/SimonBrazell/privacy-redirect","description":"Redirects Twitter, YouTube, Instagram and more to privacy friendly alternatives.","fullDescription":"Redirects Twitter, YouTube, Instagram, & Google Maps requests to privacy friendly alternatives - Nitter, Invidious, Bibliogram, & OpenStreetMap.\n\nAllows for setting custom instances, toggling all redirects on/off and more.\n\n★ More Info: ℹ️\n\n Nitter\n Invidious\n Bibliogram\n OpenStreetMap\n\n\nThe code for this web extension is available on Github.\n\n★ Donate: 👨🏻‍💻\nIf you like this extension and are financially able please consider buying me a coffee ☕️ to show your appreciation and support the continuation of the project.\n\n★ What's New in This Version (v1.1.48) 🆕\n\n Various minor fixes and improvements, see commit history for full list.\n Thank you to everyone who submitted PRs, sorry about the delay in pushing out this update.\n\n\n★ Permissions: ℹ️\n\n Please note, access to all website navigation events ( all URLs), not just the target domains, is required to allow embedded video redirects to occur. At this time I know of no other way to achieve iframe redirects, happy to hear some suggestions on this though 🙂","weeklyDownloads":153,"type":"extension","creator":{"name":"Simon Brazell","url":"https://addons.mozilla.org/en-US/firefox/user/15274891/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/241/241463.png?modified=1622134888","width":2400,"height":1500,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/241/241463.jpg?modified=1622134888","thumbnailWidth":533,"thumbnailHeight":333,"caption":"Nitter"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/241/241464.png?modified=1622134905","width":2400,"height":1500,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/241/241464.jpg?modified=1622134905","thumbnailWidth":533,"thumbnailHeight":333,"caption":"Invidious"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/241/241465.png?modified=1622134912","width":2400,"height":1500,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/241/241465.jpg?modified=1622134912","thumbnailWidth":533,"thumbnailHeight":333,"caption":"Bibliogram"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/241/241466.png?modified=1622134928","width":2400,"height":1500,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/241/241466.jpg?modified=1622134928","thumbnailWidth":533,"thumbnailHeight":333,"caption":"OpenStreetMap"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/241/241467.png?modified=1622134936","width":2400,"height":1500,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/241/241467.jpg?modified=1622134936","thumbnailWidth":533,"thumbnailHeight":333,"caption":"Options"}],"contributionURL":"https://www.buymeacoffee.com/SimonBrazell?utm_content=product-page-contribute&utm_medium=referral&utm_source=addons.mozilla.org","averageRating":4.7321,"reviewCount":29,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/privacy-redirect/reviews/","updateDate":1625874941000},{"id":"{5173bfae-59df-4a20-a9dd-0ab3e8c82e36}","icons":{"32":"https://addons.cdn.mozilla.net/static/img/addon-icons/default-32.png?v=20210601","64":"https://addons.cdn.mozilla.net/static/img/addon-icons/default-64.png?v=20210601","128":"https://addons.cdn.mozilla.net/static/img/addon-icons/default-128.png?v=20210601"},"name":"Sci-Hub X Now!","version":"0.1.0","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3706836/sci_hub_x_now-0.1.0-an+fx.xpi","homepageURL":"https://github.com/gchenfc/sci-hub-now","supportURL":"https://github.com/gchenfc/sci-hub-now","description":"Opens the sci-hub page for the article you want to read.\nA continuation of https://addons.mozilla.org/en-US/firefox/addon/sci-hub-now/ by developer 0x01h who is no longer maintaining the original extension.","fullDescription":"When on a publisher's page for an academic article, click the sci-hub \"bird\" icon to go to the corresponding sci-hub page.\nWorks by searching for the doi anywhere on the page.\n\nAllows you to change the sci-hub domain in \"preferences\" in case sci-hub mirror changes.\n\nNote: this was originally made by 0x01h but he no longer maintains it. I have made minor modifications and will continue maintaining it until at least 2024.","weeklyDownloads":80,"type":"extension","creator":{"name":"Gerry","url":"https://addons.mozilla.org/en-US/firefox/user/16354622/"},"developers":[],"screenshots":[],"contributionURL":"","averageRating":5,"reviewCount":9,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/sci-hub-x-now/reviews/","updateDate":1610323518000},{"id":"yayanotherspeeddial@bakadev.fr","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/908/908898-32.png?modified=1614616677","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/908/908898-64.png?modified=1614616677","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/908/908898-128.png?modified=1614616677"},"name":"Yay! Another Speed dial!","version":"1.5.2.1","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3775587/yay_another_speed_dial-1.5.2.1-an+fx.xpi","homepageURL":"https://www.yayspeeddial.com/","supportURL":null,"description":"A cool and highly customizable Speed Dial focused on style and simplicity.","fullDescription":"Yay! Another Speed dial! is an extension to replace the home page when opening the browser or a new tab.\nYou can organize your bookmarks by tabs to quickly access your favorite sites.\nA theme editor makes it possible to completely personalize your homepage as you wish!\n\nfeatures\n- Fully customize your homepage or use one of our already created themes.\n- Fully responsive design\n- Organize your bookmarks by tabs\n- Easily add the site you are visiting to one of the tabs you have created","weeklyDownloads":5,"type":"extension","creator":{"name":"Mimiste","url":"https://addons.mozilla.org/en-US/firefox/user/13536280/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/198/198155.png?modified=1622132895","width":700,"height":438,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/198/198155.jpg?modified=1622132895","thumbnailWidth":533,"thumbnailHeight":334,"caption":"Home page"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/198/198156.png?modified=1622132895","width":700,"height":438,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/198/198156.jpg?modified=1622132895","thumbnailWidth":533,"thumbnailHeight":334,"caption":"Theme editor (Page)"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/198/198157.png?modified=1622132895","width":700,"height":438,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/198/198157.jpg?modified=1622132895","thumbnailWidth":533,"thumbnailHeight":334,"caption":"Theme editor (Dials)"}],"contributionURL":"https://www.paypal.com/donate/?token=PbH2msRz-nbqfCjJzSxg38MWE619YgzqzXP3yWxU7xm8DFWg-UpUHI-SNsrG_Ddrbo7GAG&country.x=FR&locale.x=&utm_content=product-page-contribute&utm_medium=referral&utm_source=addons.mozilla.org","averageRating":4.2078,"reviewCount":59,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/yay-another-speed-dial/reviews/","updateDate":1620892533000}]} \ No newline at end of file diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/bookmarkbackups/bookmarks-2021-06-09_6_s7TzJZwaS-PjhkaAVK5pJg==.jsonlz4 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/bookmarkbackups/bookmarks-2021-07-13_6_s7TzJZwaS-PjhkaAVK5pJg==.jsonlz4 similarity index 100% rename from tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/bookmarkbackups/bookmarks-2021-06-09_6_s7TzJZwaS-PjhkaAVK5pJg==.jsonlz4 rename to tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/bookmarkbackups/bookmarks-2021-07-13_6_s7TzJZwaS-PjhkaAVK5pJg==.jsonlz4 diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/broadcast-listeners.json b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/broadcast-listeners.json index 249426bb..8195e63a 100644 --- a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/broadcast-listeners.json +++ b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/broadcast-listeners.json @@ -1 +1 @@ -{"version":1,"listeners":{"remote-settings/monitor_changes":{"version":"\"1623229070533\"","sourceInfo":{"moduleURI":"resource://services-settings/remote-settings.js","symbolName":"remoteSettingsBroadcastHandler"}}}} \ No newline at end of file +{"version":1,"listeners":{"remote-settings/monitor_changes":{"version":"\"1626209888341\"","sourceInfo":{"moduleURI":"resource://services-settings/remote-settings.js","symbolName":"remoteSettingsBroadcastHandler"}}}} \ No newline at end of file diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/compatibility.ini b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/compatibility.ini index dd12549b..0d988628 100644 --- a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/compatibility.ini +++ b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/compatibility.ini @@ -1,5 +1,5 @@ [Compatibility] -LastVersion=89.0_20210531160138/20210531160138 +LastVersion=89.0.2_20210623174607/20210623174607 LastOSABI=Linux_x86_64-gcc3 LastPlatformDir=/usr/lib/firefox LastAppDir=/usr/lib/firefox/browser diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/datareporting/glean/db/data.safe.bin b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/datareporting/glean/db/data.safe.bin index 04645fa0..ad1b7666 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/datareporting/glean/db/data.safe.bin and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/datareporting/glean/db/data.safe.bin differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions.json b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions.json index 4f47584a..a9400a21 100644 --- a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions.json +++ b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions.json @@ -1 +1 @@ -{"schemaVersion":33,"addons":[{"id":"chrome-gnome-shell@gnome.org","syncGUID":"{82508f32-b0ec-4e78-bf50-dc24a1c517d8}","version":"10.1","type":"extension","loader":null,"updateURL":null,"optionsURL":"options.html","optionsType":3,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"GNOME Shell integration","description":"This extension provides integration with GNOME Shell and the corresponding extensions repository https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1542628160000,"updateDate":1623202671000,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/chrome-gnome-shell@gnome.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"GNOME Shell integration","description":"This extension provides integration with GNOME Shell and the corresponding extensions repository https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Integratsioon GNOME Shelliga","description":"See laiendus võimaldab integratsiooni GNOME Shelli ja selle laienduste hoidlaga aadressil https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["et"]},{"name":"Integracion a GNOME Shell","description":"Aquesta extension permet l'integracion a GNOME Shell e a las extensions correspondentas del depaus https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["oc"]},{"name":"GNOME Shell integration","description":"This extension provides integration with GNOME Shell and the corresponding extensions repository https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["pt-PT"]},{"name":"Integrasi Shell GNOME","description":"Ekstensi ini menyediakan integrasi dengan Shell GNOME dan repositori ekstensi yang berhubungan https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"GNOME Shell-integration","description":"Detta tillägg tillhandahåller integration med GNOME Shell och det motsvarande tilläggsförrådet https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"Integrace do GNOME Shell","description":"Toto rozšíření poskytuje integraci s GNOME Shell a shoduje se s repozitářem rozšíření https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["cs"]},{"name":"Intégration à GNOME Shell","description":"Cette extension permet l'intégration à GNOME Shell et aux extensions correspondantes du dépôt https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"GNOME Shell integráció","description":"Ez a kiterjesztés integrációt biztosít a GNOME Shell-lel, és a hozzá tartozó https://extensions.gnome.org kiterjesztéstárolóval","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"그놈 셸 확장 기능","description":"이 확장 기능은 그놈 셸 통합 기능이 있으며 관련 확장 기능 저장소는 https://extensions.gnome.org에 있습니다","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"Integrazione con GNOME Shell","description":"Questa estensione fornisce l'integrazione con GNOME Shell e il corrispondente repository delle estensioni https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"GNOME Shell-Integration","description":"Diese Erweiterung ermöglicht die Integration mit der GNOME Shell und dem dazugehörenden Erweiterungs-Repository von https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Ingegrasjon med GNOME-skallet","description":"This extension provides integration with GNOME Shell and the corresponding extensions repository https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["nb"]},{"name":"Amalachadh slige GNOMW","description":"Bheir an leudachan seo dhut amalachadh le Slige GNOME agus Shell ionad-tasgaidh nan leudachan co-cheangailte rithe https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["gd"]},{"name":"Integración de GNOME Shell","description":"Esta extensión fornece integración con GNOME SHell e o correspondente repositorio de extensións https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["gl"]},{"name":"Integració amb el GNOME Shell","description":"Aquesta extensió proporciona integració amb GNOME Shell i el corresponent dipòsit d'extensions https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"Integrácia do Shellu prostredia GNOME","description":"Toto rozšírenie poskytuje integráciu do Shellu prostredia GNOME a príslušný repozitár rozšírení https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["sk"]},{"name":"Интеграција Гномове шкољке","description":"Ово проширење обезбеђује интеграцију са Гномовом шкољком и одговарајућом ризницом проширења „https://extensions.gnome.org“","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["sr"]},{"name":"GNOME Shell integration","description":"Данное расширение добавляет интеграцию с GNOME Shell и репозиторием расширений https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"GNOME Shell integration","description":"This extension provides integration with GNOME Shell and the corresponding extensions repository https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["sl"]},{"name":"Integracija GNOME ljuske","description":"Ovo proširenje omogućuje integraciju s GNOME ljuskom i odgovarajućem repozitoriju proširenja https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["hr"]},{"name":"Gnome Shell -integraatio","description":"Tämä laajennus tarjoaa integraation Gnome Shellin ja Gnome Shellin laajennustietovaraston https://extensions.gnome.org kanssa","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"GNOME Shell integration","description":"Αυτή η επέκταση παρέχει ενσωμάτωση με το GNOME Shell και τα πρόσθετα του από το https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"Integracja z GNOME Shell","description":"To rozszerzenie dostarcza integrację z GNOME Shell i repozytorium rozszerzeń https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"Integración con GNOME Shell","description":"Esta extensión proporciona integración con GNOME Shell y el correspondiente repositorio de extensiones https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"Integração com GNOME Shell","description":"Essa extensão fornece integração com o GNOME Shell e com o repositório de extensões correspondente, o https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"Gnome-shell-integratie","description":"Deze extensie voorziet in de integratie met Gnome-shell en de bijbehorende website met extensies https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"GNOME Shell-integration","description":"Denne udvidelse giver integration med GNOME Shell og det tilhørende udvidelsesarkiv https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"GNOME Kabuk bütünleşmesi","description":"Bu uygulama, GNOME Kabuk ve buna uygun uzantı deposu olan https://extensions.gnome.org ile bütünleşme sağlar","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["tr"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"56.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1521613805000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["alarms","nativeMessaging","notifications","storage","tabs"],"origins":["https://extensions.gnome.org/","https://extensions.gnome.org/*"]},"optionalPermissions":{"permissions":["idle"],"origins":[]},"icons":{"16":"icons/GnomeLogo-16.png","48":"icons/GnomeLogo-48.png","128":"icons/GnomeLogo-128.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{}},"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/chrome-gnome-shell@gnome.org.xpi!/","location":"app-profile"},{"id":"wayback_machine@mozilla.org","syncGUID":"{bd345b14-ed21-4d32-9720-0b70258947e4}","version":"1.8.6","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Wayback Machine","description":"Reduce annoying 404 pages by automatically checking for an archived copy in the Wayback Machine.","creator":null,"homepageURL":"https://archive.org/","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1542629092000,"updateDate":1623202671000,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/wayback_machine@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"48.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1524081006000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs","activeTab","storage","webRequest","webRequestBlocking","contextMenus"],"origins":["http://*/*","https://*/*","*://*/*",""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"48":"images/icon.png","96":"images/icon@2x.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{"webRequest":{"onCompleted":[[{"incognito":null,"tabId":null,"types":["main_frame"],"urls":[""],"windowId":null},null]],"onErrorOccurred":[[{"incognito":null,"tabId":null,"types":["main_frame"],"urls":[""],"windowId":null}]]}}},"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/wayback_machine@mozilla.org.xpi!/","location":"app-profile"},{"id":"{9350bc42-47fb-4598-ae0f-825e3dd9ceba}","syncGUID":"{bfe4a8ba-fc6d-4290-b03c-272cf99e1ed1}","version":"1.3.8","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Absolute Enable Right Click & Copy","description":"Force Enable Right Click & Copy","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1542628082000,"updateDate":1623202671000,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/{9350bc42-47fb-4598-ae0f-825e3dd9ceba}.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"48.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1547160306000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs","storage","activeTab"],"origins":[""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"images/16px.png","32":"images/32px.png","48":"images/48px.png","128":"images/128px.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{}},"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/%7B9350bc42-47fb-4598-ae0f-825e3dd9ceba%7D.xpi!/","location":"app-profile"},{"id":"{5173bfae-59df-4a20-a9dd-0ab3e8c82e36}","syncGUID":"{48035ddb-f446-484e-85ac-5586066ac936}","version":"0.1.0","type":"extension","loader":null,"optionsURL":"options.html","optionsType":5,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Sci-Hub X Now!","description":"Free access to academic papers with just a single click via sci-hub!","creator":"Orçun Özdemir and Lucas Sterzinger and Gerry Chen","homepageURL":"https://github.com/gchenfc/sci-hub-now","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1602855989000,"updateDate":1623202671000,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/{5173bfae-59df-4a20-a9dd-0ab3e8c82e36}.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"48.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1610323518000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["activeTab","contextMenus","storage"],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"48":"icons/48x48.png","96":"icons/96x96.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":false,"installTelemetryInfo":{"source":"amo","sourceURL":"https://addons.mozilla.org/en-US/firefox/addon/sci-hub-x-now/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search","method":"amWebAPI"},"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/%7B5173bfae-59df-4a20-a9dd-0ab3e8c82e36%7D.xpi!/","location":"app-profile"},{"id":"{b9db16a4-6edc-47ec-a1f4-b86292ed211d}","syncGUID":"{2159952e-6d3a-4f21-affb-87baa545087c}","version":"7.4.0","type":"extension","loader":null,"updateURL":null,"optionsURL":"content/settings.html?panel=settings","optionsType":3,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1573413674000,"updateDate":1623202671000,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/{b9db16a4-6edc-47ec-a1f4-b86292ed211d}.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["en-US"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["dsb"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["is"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["hsb"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["nb"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["sk"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["sl"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["ro"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["nl"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"57.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1608112527000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs","contextMenus","nativeMessaging","webRequest","webRequestBlocking","downloads","clipboardWrite","webNavigation","notifications","storage","cookies","menus"],"origins":["","*://*.downloadhelper.net/*"]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"32":"content/images/icon-32.png","40":"content/images/icon-40.png","48":"content/images/icon-48.png","128":"content/images/icon-128.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{"webRequest":{"onHeadersReceived":[[{"incognito":null,"tabId":null,"types":null,"urls":[""],"windowId":null},["responseHeaders"]]],"onBeforeRedirect":[[{"incognito":null,"tabId":null,"types":null,"urls":[""],"windowId":null},null]],"onSendHeaders":[[{"incognito":null,"tabId":null,"types":null,"urls":[""],"windowId":null},["requestHeaders"]]],"onErrorOccurred":[[{"incognito":null,"tabId":null,"types":null,"urls":[""],"windowId":null}],[{"incognito":null,"tabId":null,"types":null,"urls":["https://*.facebook.com/video/tahoe/async/*"],"windowId":null}]],"onBeforeRequest":[[{"incognito":null,"tabId":null,"types":null,"urls":["https://*.facebook.com/video/*"],"windowId":null},["requestBody"]]]}}},"hidden":false,"installTelemetryInfo":{"source":"amo","method":"amWebAPI"},"recommendationState":{"validNotAfter":1765900527000,"validNotBefore":1608112527000,"states":["recommended"]},"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/%7Bb9db16a4-6edc-47ec-a1f4-b86292ed211d%7D.xpi!/","location":"app-profile"},{"id":"jid1-MnnxcxisBPnSXQ@jetpack","syncGUID":"{f0f2b64d-ce1c-44d4-af9f-71ce9270b90c}","version":"2021.2.2","type":"extension","loader":null,"updateURL":null,"optionsURL":"/skin/options.html","optionsType":3,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Privacy Badger","description":"Privacy Badger automatically learns to block invisible trackers.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1542628050000,"updateDate":1623202671000,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/jid1-MnnxcxisBPnSXQ@jetpack.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Privacy Badger","description":"Privacy Badger automatically learns to block invisible trackers.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["en-US"]},{"name":"Privacy Badger","description":"Privacy Badger apprend automatiquement à bloquer les traceurs invisibles.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Privacy Badger","description":"O Privacy Badger aprende automaticamente a bloquear rastreadores invisíveis.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["pt-PT"]},{"name":"Privacy Badger","description":"Privacy Badger lär sig automatiskt att blockera osynliga spårare.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"Privacy Badger","description":"Privacy Badger se automaticky učí blokovat neviditelné sledovací prvky na webových stránkách.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["cs"]},{"name":"Privacy Badger","description":"Privacy Badger автоматично навчається блокувати невидимі елементи стеження.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"«غرير الخصوصية»","description":"يتعلم «غرير الخصوصية» تلقائيا أن يحجب المتعقبات الخفية.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["ar"]},{"name":"Privata Melo","description":"Privata Melo aŭtomate lernas bloki nevideblajn spurilojn.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["eo"]},{"name":"Privacy Badger","description":"Privacy Badger는 자동으로 보이지 않는 추적기를 차단하는 법을 학습합니다.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"Privacy Badger","description":"Privacy Badger impara automaticamente a bloccare i tracker invisibili.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"Privacy Badger","description":"Privacy Badger lernt automatisch, unsichtbare Tracker zu blocken.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Privacy Badger","description":"El Privacy Badger aprèn automàticament a blocar rastrejadors invisibles.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"Privacy Badger","description":"Privacy Badger automatycznie uczy się blokować niewidoczne elementy śledzące.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"پرایوسی بجر","description":"پرایوسی بجر به صورت اتوماتیک یاد می گیرد تا ردیاب های مخفی را بلاک کند.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["fa"]},{"name":"Privacy Badger","description":"Privacy Badger oppii automaattisesti estämään näkymättömät jäljittimet.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"Privacy Badger","description":"Privacy Badger автоматично се научава да блокира невидими преследвачи.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"Privacy Badger","description":"O Privacy Badger aprende automaticamente a bloquear rastreadores invisíveis.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"Privacy Badger","description":"Privacy Badger lærer automatisk at blokere usynlige sporinger.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"Privacy Badger","description":"Privacy Badger לומד באופן אוטומטי לחסום עוקבנים בלתי נראים.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["he"]},{"name":"Privacy Badger","description":"Privacy Badger 會自動學習並阻擋不可見的追蹤器。","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"Privacy Badger","description":"Privacy Badger görünmez takipçileri engellemeyi otomatik olarak öğrenir.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"Privacy Badger","description":"Privacy Badger leert automatisch onzichtbare volgers te blokkeren.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"Privacy Badger","description":"Privacy Badger aprende automáticamente a bloquear rastreadores invisibles.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"Privacy Badger","description":"Privacy Badger автоматически учится блокировать невидимые трекеры.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"隐私獾","description":"隐私獾会自动学习去阻止不可见的追踪器。","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"52.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1612293514000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs","webNavigation","webRequest","webRequestBlocking","storage","cookies","privacy"],"origins":["http://*/*","https://*/*","https://*.facebook.com/*","http://*.facebook.com/*","https://*.messenger.com/*","http://*.messenger.com/*","*://*.facebookcorewwwi.onion/*","https://www.google.com/*","http://www.google.com/*","https://www.google.ad/*","http://www.google.ad/*","https://www.google.ae/*","http://www.google.ae/*","https://www.google.com.af/*","http://www.google.com.af/*","https://www.google.com.ag/*","http://www.google.com.ag/*","https://www.google.com.ai/*","http://www.google.com.ai/*","https://www.google.al/*","http://www.google.al/*","https://www.google.am/*","http://www.google.am/*","https://www.google.co.ao/*","http://www.google.co.ao/*","https://www.google.com.ar/*","http://www.google.com.ar/*","https://www.google.as/*","http://www.google.as/*","https://www.google.at/*","http://www.google.at/*","https://www.google.com.au/*","http://www.google.com.au/*","https://www.google.az/*","http://www.google.az/*","https://www.google.ba/*","http://www.google.ba/*","https://www.google.com.bd/*","http://www.google.com.bd/*","https://www.google.be/*","http://www.google.be/*","https://www.google.bf/*","http://www.google.bf/*","https://www.google.bg/*","http://www.google.bg/*","https://www.google.com.bh/*","http://www.google.com.bh/*","https://www.google.bi/*","http://www.google.bi/*","https://www.google.bj/*","http://www.google.bj/*","https://www.google.com.bn/*","http://www.google.com.bn/*","https://www.google.com.bo/*","http://www.google.com.bo/*","https://www.google.com.br/*","http://www.google.com.br/*","https://www.google.bs/*","http://www.google.bs/*","https://www.google.bt/*","http://www.google.bt/*","https://www.google.co.bw/*","http://www.google.co.bw/*","https://www.google.by/*","http://www.google.by/*","https://www.google.com.bz/*","http://www.google.com.bz/*","https://www.google.ca/*","http://www.google.ca/*","https://www.google.cd/*","http://www.google.cd/*","https://www.google.cf/*","http://www.google.cf/*","https://www.google.cg/*","http://www.google.cg/*","https://www.google.ch/*","http://www.google.ch/*","https://www.google.ci/*","http://www.google.ci/*","https://www.google.co.ck/*","http://www.google.co.ck/*","https://www.google.cl/*","http://www.google.cl/*","https://www.google.cm/*","http://www.google.cm/*","https://www.google.cn/*","http://www.google.cn/*","https://www.google.com.co/*","http://www.google.com.co/*","https://www.google.co.cr/*","http://www.google.co.cr/*","https://www.google.com.cu/*","http://www.google.com.cu/*","https://www.google.cv/*","http://www.google.cv/*","https://www.google.com.cy/*","http://www.google.com.cy/*","https://www.google.cz/*","http://www.google.cz/*","https://www.google.de/*","http://www.google.de/*","https://www.google.dj/*","http://www.google.dj/*","https://www.google.dk/*","http://www.google.dk/*","https://www.google.dm/*","http://www.google.dm/*","https://www.google.com.do/*","http://www.google.com.do/*","https://www.google.dz/*","http://www.google.dz/*","https://www.google.com.ec/*","http://www.google.com.ec/*","https://www.google.ee/*","http://www.google.ee/*","https://www.google.com.eg/*","http://www.google.com.eg/*","https://www.google.es/*","http://www.google.es/*","https://www.google.com.et/*","http://www.google.com.et/*","https://www.google.fi/*","http://www.google.fi/*","https://www.google.com.fj/*","http://www.google.com.fj/*","https://www.google.fm/*","http://www.google.fm/*","https://www.google.fr/*","http://www.google.fr/*","https://www.google.ga/*","http://www.google.ga/*","https://www.google.ge/*","http://www.google.ge/*","https://www.google.gg/*","http://www.google.gg/*","https://www.google.com.gh/*","http://www.google.com.gh/*","https://www.google.com.gi/*","http://www.google.com.gi/*","https://www.google.gl/*","http://www.google.gl/*","https://www.google.gm/*","http://www.google.gm/*","https://www.google.gr/*","http://www.google.gr/*","https://www.google.com.gt/*","http://www.google.com.gt/*","https://www.google.gy/*","http://www.google.gy/*","https://www.google.com.hk/*","http://www.google.com.hk/*","https://www.google.hn/*","http://www.google.hn/*","https://www.google.hr/*","http://www.google.hr/*","https://www.google.ht/*","http://www.google.ht/*","https://www.google.hu/*","http://www.google.hu/*","https://www.google.co.id/*","http://www.google.co.id/*","https://www.google.ie/*","http://www.google.ie/*","https://www.google.co.il/*","http://www.google.co.il/*","https://www.google.im/*","http://www.google.im/*","https://www.google.co.in/*","http://www.google.co.in/*","https://www.google.iq/*","http://www.google.iq/*","https://www.google.is/*","http://www.google.is/*","https://www.google.it/*","http://www.google.it/*","https://www.google.je/*","http://www.google.je/*","https://www.google.com.jm/*","http://www.google.com.jm/*","https://www.google.jo/*","http://www.google.jo/*","https://www.google.co.jp/*","http://www.google.co.jp/*","https://www.google.co.ke/*","http://www.google.co.ke/*","https://www.google.com.kh/*","http://www.google.com.kh/*","https://www.google.ki/*","http://www.google.ki/*","https://www.google.kg/*","http://www.google.kg/*","https://www.google.co.kr/*","http://www.google.co.kr/*","https://www.google.com.kw/*","http://www.google.com.kw/*","https://www.google.kz/*","http://www.google.kz/*","https://www.google.la/*","http://www.google.la/*","https://www.google.com.lb/*","http://www.google.com.lb/*","https://www.google.li/*","http://www.google.li/*","https://www.google.lk/*","http://www.google.lk/*","https://www.google.co.ls/*","http://www.google.co.ls/*","https://www.google.lt/*","http://www.google.lt/*","https://www.google.lu/*","http://www.google.lu/*","https://www.google.lv/*","http://www.google.lv/*","https://www.google.com.ly/*","http://www.google.com.ly/*","https://www.google.co.ma/*","http://www.google.co.ma/*","https://www.google.md/*","http://www.google.md/*","https://www.google.me/*","http://www.google.me/*","https://www.google.mg/*","http://www.google.mg/*","https://www.google.mk/*","http://www.google.mk/*","https://www.google.ml/*","http://www.google.ml/*","https://www.google.com.mm/*","http://www.google.com.mm/*","https://www.google.mn/*","http://www.google.mn/*","https://www.google.ms/*","http://www.google.ms/*","https://www.google.com.mt/*","http://www.google.com.mt/*","https://www.google.mu/*","http://www.google.mu/*","https://www.google.mv/*","http://www.google.mv/*","https://www.google.mw/*","http://www.google.mw/*","https://www.google.com.mx/*","http://www.google.com.mx/*","https://www.google.com.my/*","http://www.google.com.my/*","https://www.google.co.mz/*","http://www.google.co.mz/*","https://www.google.com.na/*","http://www.google.com.na/*","https://www.google.com.ng/*","http://www.google.com.ng/*","https://www.google.com.ni/*","http://www.google.com.ni/*","https://www.google.ne/*","http://www.google.ne/*","https://www.google.nl/*","http://www.google.nl/*","https://www.google.no/*","http://www.google.no/*","https://www.google.com.np/*","http://www.google.com.np/*","https://www.google.nr/*","http://www.google.nr/*","https://www.google.nu/*","http://www.google.nu/*","https://www.google.co.nz/*","http://www.google.co.nz/*","https://www.google.com.om/*","http://www.google.com.om/*","https://www.google.com.pa/*","http://www.google.com.pa/*","https://www.google.com.pe/*","http://www.google.com.pe/*","https://www.google.com.pg/*","http://www.google.com.pg/*","https://www.google.com.ph/*","http://www.google.com.ph/*","https://www.google.com.pk/*","http://www.google.com.pk/*","https://www.google.pl/*","http://www.google.pl/*","https://www.google.pn/*","http://www.google.pn/*","https://www.google.com.pr/*","http://www.google.com.pr/*","https://www.google.ps/*","http://www.google.ps/*","https://www.google.pt/*","http://www.google.pt/*","https://www.google.com.py/*","http://www.google.com.py/*","https://www.google.com.qa/*","http://www.google.com.qa/*","https://www.google.ro/*","http://www.google.ro/*","https://www.google.ru/*","http://www.google.ru/*","https://www.google.rw/*","http://www.google.rw/*","https://www.google.com.sa/*","http://www.google.com.sa/*","https://www.google.com.sb/*","http://www.google.com.sb/*","https://www.google.sc/*","http://www.google.sc/*","https://www.google.se/*","http://www.google.se/*","https://www.google.com.sg/*","http://www.google.com.sg/*","https://www.google.sh/*","http://www.google.sh/*","https://www.google.si/*","http://www.google.si/*","https://www.google.sk/*","http://www.google.sk/*","https://www.google.com.sl/*","http://www.google.com.sl/*","https://www.google.sn/*","http://www.google.sn/*","https://www.google.so/*","http://www.google.so/*","https://www.google.sm/*","http://www.google.sm/*","https://www.google.sr/*","http://www.google.sr/*","https://www.google.st/*","http://www.google.st/*","https://www.google.com.sv/*","http://www.google.com.sv/*","https://www.google.td/*","http://www.google.td/*","https://www.google.tg/*","http://www.google.tg/*","https://www.google.co.th/*","http://www.google.co.th/*","https://www.google.com.tj/*","http://www.google.com.tj/*","https://www.google.tl/*","http://www.google.tl/*","https://www.google.tm/*","http://www.google.tm/*","https://www.google.tn/*","http://www.google.tn/*","https://www.google.to/*","http://www.google.to/*","https://www.google.com.tr/*","http://www.google.com.tr/*","https://www.google.tt/*","http://www.google.tt/*","https://www.google.com.tw/*","http://www.google.com.tw/*","https://www.google.co.tz/*","http://www.google.co.tz/*","https://www.google.com.ua/*","http://www.google.com.ua/*","https://www.google.co.ug/*","http://www.google.co.ug/*","https://www.google.co.uk/*","http://www.google.co.uk/*","https://www.google.com.uy/*","http://www.google.com.uy/*","https://www.google.co.uz/*","http://www.google.co.uz/*","https://www.google.com.vc/*","http://www.google.com.vc/*","https://www.google.co.ve/*","http://www.google.co.ve/*","https://www.google.vg/*","http://www.google.vg/*","https://www.google.co.vi/*","http://www.google.co.vi/*","https://www.google.com.vn/*","http://www.google.com.vn/*","https://www.google.vu/*","http://www.google.vu/*","https://www.google.ws/*","http://www.google.ws/*","https://www.google.rs/*","http://www.google.rs/*","https://www.google.co.za/*","http://www.google.co.za/*","https://www.google.co.zm/*","http://www.google.co.zm/*","https://www.google.co.zw/*","http://www.google.co.zw/*","https://www.google.cat/*","http://www.google.cat/*","https://hangouts.google.com/*","http://hangouts.google.com/*","https://docs.google.com/*","http://docs.google.com/*",""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"icons/badger-16.png","19":"icons/badger-19.png","38":"icons/badger-38.png","48":"icons/badger-48.png","64":"icons/badger-64.png","128":"icons/badger-128.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{"webRequest":{"onBeforeRequest":[[{"incognito":null,"tabId":null,"types":null,"urls":["http://*/*","https://*/*"],"windowId":null},["blocking"]]],"onBeforeSendHeaders":[[{"incognito":null,"tabId":null,"types":null,"urls":["http://*/*","https://*/*"],"windowId":null},["requestHeaders","blocking"]],[{"incognito":null,"tabId":null,"types":null,"urls":[""],"windowId":null},["requestHeaders"]]],"onHeadersReceived":[[{"incognito":null,"tabId":null,"types":null,"urls":[""],"windowId":null},["responseHeaders","blocking"]]],"onResponseStarted":[[{"incognito":null,"tabId":null,"types":null,"urls":[""],"windowId":null},["responseHeaders"]]]}}},"hidden":false,"installTelemetryInfo":null,"recommendationState":{"validNotAfter":1770081513000,"validNotBefore":1612293513000,"states":["recommended-android","recommended"]},"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/jid1-MnnxcxisBPnSXQ@jetpack.xpi!/","location":"app-profile"},{"id":"formautofill@mozilla.org","syncGUID":"{83e890fe-16cc-459b-bbd5-c7eb1b2cf3a5}","version":"1.0.1","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Form Autofill","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1541084183000,"updateDate":1622474771000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/formautofill@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{}},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/formautofill@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"screenshots@mozilla.org","syncGUID":"{e693a1c7-6163-43ad-ac2d-896a25f333dd}","version":"39.0.1","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Firefox Screenshots","description":"Take clips and screenshots from the Web and save them temporarily or permanently.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1541084183000,"updateDate":1622474771000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/screenshots@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"57.0a1","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["activeTab","downloads","tabs","storage","notifications","clipboardWrite","contextMenus"],"origins":["","https://screenshots.firefox.com/","https://screenshots.firefox.com/*"]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{}},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/screenshots@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"webcompat-reporter@mozilla.org","syncGUID":"{c50bfe40-12f2-483e-b633-744e2561c742}","version":"1.4.2","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"WebCompat Reporter","description":"Report site compatibility issues on webcompat.com","creator":"Thomas Wisniewski ","homepageURL":"https://github.com/mozilla/webcompat-reporter","developers":null,"translators":null,"contributors":null},"visible":true,"active":false,"userDisabled":true,"appDisabled":false,"embedderDisabled":false,"installDate":1541084183000,"updateDate":1622474771000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/webcompat-reporter@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs"],"origins":[""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"icons/lightbulb.svg","32":"icons/lightbulb.svg","48":"icons/lightbulb.svg","96":"icons/lightbulb.svg","128":"icons/lightbulb.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/webcompat-reporter@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"webcompat@mozilla.org","syncGUID":"{d68069e0-85d1-41a9-a0ce-6626a27d5361}","version":"22.2.0","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Web Compatibility Interventions","description":"Urgent post-release fixes for web compatibility.","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1541084183000,"updateDate":1622474771000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/webcompat@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"59.0b5","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs","webNavigation","webRequest","webRequestBlocking"],"origins":[""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{"webRequest":{"onBeforeRequest":[[{"incognito":null,"tabId":null,"types":["script"],"urls":["*://webcompat-addon-testbed.herokuapp.com/shims_test.js","*://example.com/browser/browser/extensions/webcompat/tests/browser/shims_test.js","*://example.com/browser/browser/extensions/webcompat/tests/browser/shims_test_2.js","*://example.com/browser/browser/extensions/webcompat/tests/browser/shims_test_3.js","*://cdn.adsafeprotected.com/iasPET.1.js","*://static.adsafeprotected.com/vans-adapter-google-ima.js","*://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js","*://auth.9c9media.ca/auth/main.js","*://libs.coremetrics.com/eluminate.js","*://connect.facebook.net/*/sdk.js*","*://connect.facebook.net/*/all.js*","*://www.google-analytics.com/analytics.js","*://www.google-analytics.com/plugins/ua/ec.js","*://www.google-analytics.com/gtm/js","*://www.googletagmanager.com/gtm.js","*://ssl.google-analytics.com/ga.js","*://www.googletagservices.com/tag/js/gpt.js","*://securepubads.g.doubleclick.net/tag/js/gpt.js","*://securepubads.g.doubleclick.net/gpt/pubads_impl_*.js","*://s0.2mdn.net/instream/html5/ima3.js","*://imasdk.googleapis.com/js/sdkloader/ima3.js","*://id.rambler.ru/rambler-id-helper/auth_events.js","*://media.richrelevance.com/rrserver/js/1.2/p13n.js"],"windowId":null},["blocking"]]],"onBeforeSendHeaders":[[{"incognito":null,"tabId":null,"types":null,"urls":["*://webcompat-addon-testbed.herokuapp.com/*"],"windowId":null},["blocking","requestHeaders"]],[{"incognito":null,"tabId":null,"types":null,"urls":["*://*.att.tv/*"],"windowId":null},["blocking","requestHeaders"]],[{"incognito":null,"tabId":null,"types":null,"urls":["*://steamcommunity.com/chat*"],"windowId":null},["blocking","requestHeaders"]],[{"incognito":null,"tabId":null,"types":null,"urls":["https://watch.sling.com/*","https://www.sling.com/*"],"windowId":null},["blocking","requestHeaders"]],[{"incognito":null,"tabId":null,"types":null,"urls":["https://www.mobilesuica.com/*"],"windowId":null},["blocking","requestHeaders"]],[{"incognito":null,"tabId":null,"types":null,"urls":["*://*.bancosantander.es/*","*://*.gruposantander.es/*","*://*.santander.co.uk/*","*://bob.santanderbank.com/*","*://rolb.santanderbank.com/*"],"windowId":null},["blocking","requestHeaders"]],[{"incognito":null,"tabId":null,"types":null,"urls":["*://*.spectrum.net/voice/*"],"windowId":null},["blocking","requestHeaders"]]],"onHeadersReceived":[[{"incognito":null,"tabId":null,"types":null,"urls":["https://ads-us.rd.linksynergy.com/as.php*"],"windowId":null},["blocking","responseHeaders"]]]}}},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/webcompat@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"doh-rollout@mozilla.org","syncGUID":"{93ddb028-d448-4733-9438-c152fb327f1e}","version":"2.0.0","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"DoH Roll-Out","description":"This used to be a Mozilla add-on that supported the roll-out of DoH, but now only exists as a stub to enable migrations.","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1579529887000,"updateDate":1622474771000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/doh-rollout@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"72.0a1","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/doh-rollout@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"pictureinpicture@mozilla.org","syncGUID":"{8e1b1da0-727b-4310-a91a-6ecfba0cdeb5}","version":"1.0.0","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Picture-In-Picture","description":"Fixes for web compatibility with Picture-in-Picture","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1622474771000,"updateDate":1622474771000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/pictureinpicture@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"88.0a1","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/pictureinpicture@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"bing@search.mozilla.org","syncGUID":"{676e9101-35f2-43c8-9885-420824540115}","version":"1.3","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Bing","description":"Microsoft Bing","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1569709370787,"updateDate":1568839541000,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/bing/","location":"app-builtin"},{"id":"google@search.mozilla.org","syncGUID":"{d61f55d6-06fb-4158-bcb7-9d36dec4e9b2}","version":"1.1","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1569709370845,"updateDate":1568839541000,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["b-1-d"]},{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["b-1-e"]},{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["b-d"]},{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["b-e"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/google/","location":"app-builtin"},{"id":"wikipedia@search.mozilla.org","syncGUID":"{f3d5848e-8a3f-458b-808c-e606c35c0620}","version":"1.1","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Wikipedia (en)","description":"Wikipedia, the Free Encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1569709371001,"updateDate":1568839541000,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Wikipedia (en)","description":"Wikipedia, the Free Encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Wikipedija (hr)","description":"Wikipedija, slobodna enciklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hr"]},{"name":"Wikipedia (fi)","description":"Wikipedia (fi), vapaa tietosanakirja","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"Wikipedia (hy)","description":"Վիքիփեդիա՝ ազատ հանրագիտարան","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hy"]},{"name":"Уикипедия (kk)","description":"Уикипедия (kk)","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["kk"]},{"name":"Вікіпедыя (be)","description":"Вікіпедыя, свабодная энцыклапедыя","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["be"]},{"name":"위키백과 (ko)","description":"Wikipedia, the free encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["kr"]},{"name":"Wikipedia (ro)","description":"Wikipedia, enciclopedia liberă","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ro"]},{"name":"Wikipedia (bs)","description":"Slobodna enciklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["bs"]},{"name":"Wikipedia (pt)","description":"Wikipédia, a enciclopédia livre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["pt"]},{"name":"Vikipetã (gn)","description":"Vikipetã, opaite tembikuaa hekosãsóva renda","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["gn"]},{"name":"વિકિપીડિયા (gu)","description":"વીકીપીડિયા, મુક્ત એનસાયક્લોપીડિયા","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["gu"]},{"name":"Wikipedia (el)","description":"Βικιπαίδεια, η ελεύθερη εγκυκλοπαίδεια","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"Wikipedia (es)","description":"Wikipedia, la enciclopedia libre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"ויקיפדיה","description":"ויקיפדיה","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["he"]},{"name":"Wikipedia (da)","description":"Wikipedia, den frie encyklopædi","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"Wikipedia (tr)","description":"Vikipedi, özgür ansiklopedi","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"Wikipedija (hsb)","description":"Wikipedija, swobodna encyklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hsb"]},{"name":"Wikipedy (fy)","description":"De fergese ensyklopedy","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fy-NL"]},{"name":"विकिपीडिया (ne)","description":"विकिपिडिया एक स्वतन्त्र विश्वकोष","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ne"]},{"name":"Wikipedia (nl)","description":"De vrije encyclopedie","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"Wikipedia (ja)","description":"Wikipedia - フリー百科事典","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"Vikipeedia (et)","description":"Vikipeedia, vaba entsüklopeedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["et"]},{"name":"Wikipèdia (oc)","description":"Wikipèdia, l'enciclopèdia liura","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["oc"]},{"name":"Wicipedia (cy)","description":"Wicipedia, Y Gwyddioniadur Rhydd","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["cy"]},{"name":"వికీపీడియా (te)","description":"వికీపీడియా (te)","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["te"]},{"name":"Wikipédia (fr)","description":"Wikipédia, l'encyclopédie libre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Wikipedia (tl)","description":"Wikipedia, ang malayang ensiklopedya","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["tl"]},{"name":"维基百科","description":"维基百科,自由的百科全书","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"Wikipedia (lij)","description":"Wikipedia, l'enciclopedia libera","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["lij"]},{"name":"វីគីភីឌា (km)","description":"វីគីភីឌា សព្វ​វចនា​ធិប្បាយ​សេរី","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["km"]},{"name":"Уикипедия (bg)","description":"Уикипедия, свободната енциклоподия","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"Wikipedia (id)","description":"Wikipedia, ensiklopedia bebas","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"Wikipedia (pa)","description":"ਵਿਕਿਪੀਡਿਆ, ਮੁਫ਼ਤ/ਮੁਕਤ ਸ਼ਬਦਕੋਸ਼","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["pa"]},{"name":"উইকিপিডিয়া (bn)","description":"উইকিপিডিয়া, মুক্ত বিশ্বকোষ","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["bn"]},{"name":"Wikipedia (eu)","description":"Wikipedia, entziklopedia askea","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["eu"]},{"name":"Wikipedie (cs)","description":"Wikipedia, svobodná encyclopedie","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["cz"]},{"name":"Wikipédia (hu)","description":"Wikipedia, a szabad enciklopédia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"Wikipedia (kn)","description":"Wikipedia, the free encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["kn"]},{"name":"Wikipedia (is)","description":"Wikipedia, the free encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["is"]},{"name":"Вікіпедія (uk)","description":"Вікіпедія, вільна енциклопедія","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"Wikipedia (kab)","description":"Wikipedia, tasanayt tilellit","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["kab"]},{"name":"Wikipedia (zh)","description":"維基百科,自由的百科全書","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"ویکیپیڈیا (ur)","description":"ویکیپیڈیا آزاد دائرۃ المعارف","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ur"]},{"name":"Vikipedio (eo)","description":"Vikipedio, la libera enciklopedio","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["eo"]},{"name":"Wikipedia (si)","description":"Wikipedia, the free encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["si"]},{"name":"ويكيبيديا (ar)","description":"ويكيبيديا (ar)","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ar"]},{"name":"Wikipedia (vi)","description":"Wikipedia, bách khoa toàn thư mở","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["vi"]},{"name":"ვიკიპედია (ka)","description":"ვიკიპედია, თავისუფალი ენციკლოპედია","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ka"]},{"name":"Uicipeid (gd)","description":"Wikipedia, An leabhar mòr-eòlais","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["gd"]},{"name":"Wikipedia (it)","description":"Wikipedia, l'enciclopedia libera","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"Vikipediya (uz)","description":"Vikipediya, ochiq ensiklopediya","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["uz"]},{"name":"Wikipedia (lt)","description":"Vikipedija, laisvoji enciklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["lt"]},{"name":"Wikipedia (sq)","description":"Wikipedia, enciklopedia e lirë","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sq"]},{"name":"Vicipéid (ga)","description":"Vicipéid, an Chiclipéid Shaor","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ga-IE"]},{"name":"विकिपीडिया (hi)","description":"विकिपीडिया (हिन्दी)","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hi"]},{"name":"Vikipedeja (ltg)","description":"Vikipēdija, breivuo eņciklopedeja","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ltg"]},{"name":"விக்கிப்பீடியா (ta)","description":"விக்கிப்பீடியா (ta)","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ta"]},{"name":"Vikipediya (az)","description":"Vikipediya, açıq ensiklopediya","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["az"]},{"name":"Википедија (mk)","description":"Википедија, слободната енциклопедија","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["mk"]},{"name":"วิกิพีเดีย","description":"วิกิพีเดีย สารานุกรมเสรี","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["th"]},{"name":"Wikipedia (de)","description":"Wikipedia, die freie Enzyklopädie","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Wikipedija (dsb)","description":"Wikipedija, lichotna encyklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["dsb"]},{"name":"विकिपीडिया (mr)","description":"विकिपीडिया, मोफत माहितीकोष","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["mr"]},{"name":"Wikipedia (ast)","description":"La enciclopedia llibre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ast"]},{"name":"Wikipedia (my)","description":"အခမဲ့လွတ်လပ်စွယ်စုံကျမ်း","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["my"]},{"name":"Wikipedia (rm)","description":"Vichipedia, l'enciclopedia libra","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["rm"]},{"name":"Wikipedia (nn)","description":"Wikipedia, det frie oppslagsverket","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["NN"]},{"name":"Wikipedia (wo)","description":"Wikipedia, Jimbulang bu Ubbeeku bi","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["wo"]},{"name":"Wikipedia (gl)","description":"Wikipedia, a enciclopedia libre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["gl"]},{"name":"Viquipèdia (ca)","description":"L'enciclopèdia lliure","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"Wikipédia (sk)","description":"Wikipédia, slobodná a otvorená encyklopédia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sk"]},{"name":"Википедија (sr)","description":"Претрага Википедије на српском језику","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sr"]},{"name":"Wikipedia (af)","description":"Wikipedia, die vrye ensiklopedie","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["af"]},{"name":"ویکی‌پدیا (fa)","description":"ویکی‌پدیا، دانشنامهٔ آزاد","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fa"]},{"name":"Wikipedia (ms)","description":"Wikipedia, ensiklopedia bebas","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ms"]},{"name":"Wikipedia (ia)","description":"Wikipedia, le encyclopedia libere","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ia"]},{"name":"Wikipedia (no)","description":"Wikipedia, den frie encyklopedi","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["NO"]},{"name":"Википедия (ru)","description":"Википедия, свободная энциклопедия","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"Wikipedia (br)","description":"Wikipedia, an holloueziadur digor","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["br"]},{"name":"Wikipedia (pl)","description":"Wikipedia, wolna encyklopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"Вікіпэдыя (be-tarask)","description":"Вікіпэдыя, вольная энцыкляпэдыя","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["be-tarask"]},{"name":"Wikipedia (sv)","description":"Wikipedia, den fria encyklopedin","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sv-SE"]},{"name":"ວິກິພີເດຍ (lo)","description":"ວິກິພີເດຍ, ສາລານຸກົມເສລີ","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["lo"]},{"name":"Wikipedija (sl)","description":"Wikipedija, prosta enciklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sl"]},{"name":"Vikipēdija","description":"Vikipēdija, brīvā enciklopēdija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["lv"]},{"name":"Biquipedia (an)","description":"A enciclopedia Libre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["an"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/wikipedia/","location":"app-builtin"},{"id":"ddg@search.mozilla.org","syncGUID":"{d266c863-eb3a-4a16-a017-a58dde5b3a76}","version":"1.1","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"DuckDuckGo","description":"Search DuckDuckGo","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1569709371053,"updateDate":1568839541000,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/ddg/","location":"app-builtin"},{"id":"ebay@search.mozilla.org","syncGUID":"{caa1cea7-55c5-4750-b65f-55ced3f5309f}","version":"1.3","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1594071183499,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ie"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ch"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["at"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["au"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["be"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fr"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/ebay/","location":"app-builtin"},{"id":"firefox-alpenglow@mozilla.org","syncGUID":"{c545409f-983c-4328-95e3-6830f10e078a}","version":"1.4","type":"theme","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Firefox Alpenglow","description":"Use a colorful appearance for buttons, menus, and windows.","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":false,"userDisabled":true,"appDisabled":false,"embedderDisabled":false,"installDate":1604968137971,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"userPermissions":null,"optionalPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://builtin-themes/alpenglow/","location":"app-builtin"},{"id":"default-theme@mozilla.org","syncGUID":"{cd4717b9-58bd-4ede-90e6-a591641227b2}","version":"1.2","type":"theme","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"System theme","description":"Follow the operating system setting for buttons, menus, and windows.","creator":"Mozilla","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1604968444292,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"userPermissions":null,"optionalPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://default-theme/","location":"app-builtin"},{"id":"firefox-compact-dark@mozilla.org","syncGUID":"{ab1c995c-3f5c-48bc-90c2-b62ac992bd5f}","version":"1.2","type":"theme","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Dark","description":"A theme with a dark color scheme.","creator":"Mozilla","developers":null,"translators":null,"contributors":null},"visible":true,"active":false,"userDisabled":true,"appDisabled":false,"embedderDisabled":false,"installDate":1604968444295,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"userPermissions":null,"optionalPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://builtin-themes/dark/","location":"app-builtin"},{"id":"firefox-compact-light@mozilla.org","syncGUID":"{a4e3a0da-ee94-4b52-b816-ea6d3195739b}","version":"1.2","type":"theme","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Light","description":"A theme with a light color scheme.","creator":"Mozilla","developers":null,"translators":null,"contributors":null},"visible":true,"active":false,"userDisabled":true,"appDisabled":false,"embedderDisabled":false,"installDate":1604968444296,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"userPermissions":null,"optionalPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://builtin-themes/light/","location":"app-builtin"},{"id":"amazon@search.mozilla.org","syncGUID":"{7581a3a9-689a-4c01-986d-d9d98832ff5e}","version":"1.9","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Amazon.com.au","description":"Amazon.com.au Search","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1618002157570,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Amazon.com.au","description":"Amazon.com.au Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["au"]},{"name":"Amazon.ca","description":"Amazon.ca Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"Amazon.co.uk","description":"Amazon.co.uk Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en-GB-adm"]},{"name":"Amazon.es","description":"Amazon.es","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["spain"]},{"name":"Amazon.de","description":"Amazon.de Suche","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["de-adm"]},{"name":"Amazon.fr","description":"Recherche Amazon.fr","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["france"]},{"name":"Amazon.nl","description":"Amazon.nl Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"Amazon.co.uk","description":"Amazon.co.uk Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en-GB"]},{"name":"Amazon.co.jp","description":"Amazon.co.jp Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["jp"]},{"name":"Amazon.se","description":"Amazon.se","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sweden"]},{"name":"Amazon.it","description":"Ricerca Amazon.it","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"Amazon.de","description":"Amazon.de Suche","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Amazon.in","description":"Amazon.in Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["in"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/amazon/","location":"app-builtin"},{"id":"{b7f9d2cd-d772-4302-8c3f-eb941af36f76}","syncGUID":"{e26c6766-736d-40be-b9b8-c7da7cd75a9e}","version":"1.1.47","type":"extension","loader":null,"updateURL":null,"optionsURL":"pages/options/options.html","optionsType":5,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Privacy Redirect","description":"Redirects Twitter, YouTube, Instagram and more to privacy friendly alternatives.","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1601768229000,"updateDate":1623205118127,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/{b7f9d2cd-d772-4302-8c3f-eb941af36f76}.xpi","skinnable":false,"sourceURI":"https://addons.cdn.mozilla.net/user-media/addons/2600548/privacy_redirect-1.1.47-an+fx.xpi?filehash=sha256%3Af39d53581a265f585c38f6fbfb1f2e2d1d840922453bf75cf193fe089236707b","releaseNotesURI":"https://addons.mozilla.org/versions/updateInfo/5216693/en-US/","softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Privacy Redirect","description":"Redirects Twitter, YouTube, Instagram and more to privacy friendly alternatives.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Privacy Redirect","description":"Redirige les requêtes les demandes Twitter, YouTube, Instagram et Google Maps vers des alternatives respectueuses de la vie privée. pour Twitter, YouTube, Instagram et Google Maps vers des alternatives respectueuses de la vie privée.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Privacy Redirect","description":"Leitet Anfragen von Twitter, YouTube, Instagram & Google Maps auf datenschutzfreundliche Alternativen weiter.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Privacy Redirect","description":"将 Twitter、YouTube、Instagram 和 Google Maps 重定向至尊重隐私的替代品","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"Privacy Redirect","description":"Przekierowuje serwisy takie jak: Twitter, YouTube, Instagram i Google Maps do alternatyw sprzyjających prywatności.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"Privacy Redirect","description":"Перенаправляет запросы к Twitter, YouTube, Instagram и Google Maps на альтернативные сервисы, дружелюбные к приватности.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"Privacy Redirect","description":"Redirige las solicitudes de Twitter, Youtube, Instagram, Google Maps, Reddit y la Búsqueda de Google a alternativas que respetan su privacidad.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"Privacy Redirect","description":"Twitter, YouTube, Instagram, Google Haritalar, Reddit & Google Arama bağlantılarını gizlilik dostu alternatiflerine yönlendirir.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["tr"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"67.0","maxVersion":null}],"targetPlatforms":[],"signedState":2,"signedDate":1618543221000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["storage","webRequest","webRequestBlocking"],"origins":["","*://twitter.com/*","*://www.twitter.com/*","*://mobile.twitter.com/*","*://pbs.twimg.com/*","*://video.twimg.com/*","*://invidious.snopyta.org/*","*://invidious.xyz/*","*://invidious.kavin.rocks/*","*://tube.connect.cafe/*","*://invidious.zapashcanon.fr/*","*://invidiou.site/*","*://vid.mint.lgbt/*","*://invidious.site/*","*://yewtu.be/*","*://invidious.tube/*","*://invidious.silkky.cloud/*","*://invidious.fdn.fr/*","*://invidious.himiko.cloud/*","*://inv.skyn3t.in/*","*://tube.incognet.io/*","*://invidious.tinfoil-hat.net/*","*://invidious.namazso.eu/*","*://vid.puffyan.us/*","*://dev.viewtube.io/*","*://invidious.048596.xyz/*","*://fz253lmuao3strwbfbmx46yu7acac2jz27iwtorgmbqlkurlclmancad.onion/*","*://qklhadlycap4cnod.onion/*","*://c7hqkpkpemu6e7emz5b4vyz7idjgdvgaaa3dyimmeojqbgpea3xqjoid.onion/*","*://w6ijuptxiku4xpnnaetxvnkc5vqcdu7mgns2u77qefoixi63vbvnpnqd.onion/*"]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"assets/images/icon16.png","32":"assets/images/icon32.png","48":"assets/images/icon48.png","128":"assets/images/icon128.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"amo","sourceURL":"https://addons.mozilla.org/en-US/firefox/addon/privacy-redirect/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search","method":"amWebAPI"},"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/%7Bb7f9d2cd-d772-4302-8c3f-eb941af36f76%7D.xpi!/","location":"app-profile"},{"id":"keepassxc-browser@keepassxc.org","syncGUID":"{5c925fa7-bdb3-44bc-b792-b5912759722a}","version":"1.7.8.1","type":"extension","loader":null,"updateURL":null,"optionsURL":"options/options.html","optionsType":3,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"KeePassXC-Browser","description":"KeePassXC integration for modern web browsers","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1606947306641,"updateDate":1623205118413,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/keepassxc-browser@keepassxc.org.xpi","skinnable":false,"sourceURI":"https://addons.cdn.mozilla.net/user-media/addons/917354/keepassxc_browser-1.7.8.1-fx.xpi?filehash=sha256%3Ac091084b5ac5acbf4652bd60033a69e10d1b1e3e5ff3dd1f68fc62afea636b3d","releaseNotesURI":"https://addons.mozilla.org/versions/updateInfo/5214592/en-US/","softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"KeePassXC-Browser","description":"KeePassXC integration for modern web browsers","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"KeePassXC-Browser","description":"モダンなウェブブラウザーのための KeePassXC 統合","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"KeePassXC-Browser","description":"KeePassXC integratsioon moodsatele brauseritele","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["et"]},{"name":"KeePassXC-Browser","description":"Integração KeepassXC para os navegadores modernos","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["pt-PT"]},{"name":"KeePassXC-Browser","description":"KeePassXC интеграция за съвременните уеб браузъри","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"KeePassXC-Browser","description":"Intégration de KeePassXC pour les navigateurs Web modernes","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"KeePassXC-Browser","description":"Integrasi KeePassXC untuk peramban web modern","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"KeePassXC-Browser","description":"KeePassXC integration för moderna webbläsare","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"KeePassXC-Browser","description":"Napojení na KeePassXC pro moderní webové prohlížeče","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["cs"]},{"name":"KeePassXC-Browser","description":"KeePassXC integráció a modern webböngészőkhöz","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"KeePassXC-Browser","description":"Сполучення KeePassXC з сучасними переглядачами тенет","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"KeePassXC-Browser","description":"현대적인 웹 브라우저용 KeePassXC 통합","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"KeePassXC-Browser","description":"Integrazione di KeePassXC per browser web moderni","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"KeePassXC-Browser","description":"KeePassXC-Integration für moderne Webbrowser","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"KeePassXC-Browser","description":"KeePassXC 与现代 Web 浏览器的集成","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"KeePassXC-Browser","description":"Интеграция KeePassXC в современные веб-браузеры","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"KeePassXC-Browser","description":"Integracja KeePassXC z nowoczesnymi przeglądarkami internetowymi","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"KeePassXC-Browser","description":"KeePassXC integratio pro interretialibus navigatoribus modernis","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["la"]},{"name":"KeePassXC-Browser","description":"KeePassXC integracija za sodobne spletne brskalnike","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["sl"]},{"name":"KeePassXC-Browser","description":"KeePassXC-integraatio moderneille nettiselaimille","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"KeePassXC-Browser","description":"KeePassXC integrare pentru browsere web moderne","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["ro"]},{"name":"KeePassXC-Browser","description":"Integração KeepassXC para os navegadores modernos","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["pt"]},{"name":"KeePassXC-Browser","description":"Ενσωμάτωση KeePassXC για σύγχρονα προγράμματα περιήγησης ιστού","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"KeePassXC-Browser","description":"Integración de KeePassXC para navegadores web modernos","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"KeePassXC-Browser","description":"Integração ao KeePassXC para navegadores modernos","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"KeePassXC-Browser","description":"KeePassXC 與現代瀏覽器的整合","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"KeePassXC-Browser","description":"KeePassXC-integrering til moderne webbrowsere","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"KeePassXC-Browser","description":"Modern web tarayıcıları için KeePassXC bütünleşmesi","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"KeePassXC-Browser","description":"KeePassXC-integratie voor moderne webbrowsers","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"KeePassXC-Browser","description":"KeePassXC-integratie voor moderne webbrowsers","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["nl-NL"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"67.0","maxVersion":null}],"targetPlatforms":[],"signedState":2,"signedDate":1618234520000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["activeTab","contextMenus","clipboardWrite","nativeMessaging","notifications","storage","tabs","webNavigation","webRequest","webRequestBlocking"],"origins":["https://*/*","http://*/*","https://api.github.com/",""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"icons/keepassxc.svg","48":"icons/keepassxc.svg","64":"icons/keepassxc.svg","96":"icons/keepassxc.svg","128":"icons/keepassxc.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"amo","sourceURL":"https://addons.mozilla.org/en-US/firefox/addon/keepassxc-browser/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search","method":"amWebAPI"},"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/keepassxc-browser@keepassxc.org.xpi!/","location":"app-profile"},{"id":"yayanotherspeeddial@bakadev.fr","syncGUID":"{3095ecca-6e6a-42d5-b1d5-6778d84c2a99}","version":"1.5.2.1","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Yay! Another Speed dial!","description":"A cool and highly customizable Speed Dial focused on style and simplicity.","creator":"Loïc","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1552785444000,"updateDate":1623205118781,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/yayanotherspeeddial@bakadev.fr.xpi","skinnable":false,"sourceURI":"https://addons.cdn.mozilla.net/user-media/addons/908898/yay_another_speed_dial-1.5.2.1-an+fx.xpi?filehash=sha256%3A47aad510b271a081d0886e0ba046a9f9005049f1fc1f5c51234579a587904b56","releaseNotesURI":"https://addons.mozilla.org/versions/updateInfo/5231227/en-US/","softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Yay! Another Speed dial!","description":"A cool and highly customizable Speed Dial focused on style and simplicity.","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Yay! Another Speed dial!","description":"Un superbe Speed Dial, complètement personnalisable, concentré sur le style et la simplicité.","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Yay! Another Speed dial!","description":"Egy rendkívül jól testreszabható gyorshívó, amit a stílus és az egyszerűség jellemez.","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"Yay! Another Speed dial!","description":"Eine coole und höchst anpassbare Speed Dial Erweiterung, fokussiert auf Aussehen und Einfachheit.","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Yay! Another Speed dial!","description":"一个聚焦于风格、简洁,高自定义性的超酷快速启动附加组件。","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"Yay! Another Speed dial!","description":"Классная Экспресс-панель, широко кастомизируемая, простая и стильная.","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"Yay! Another Speed dial!","description":"一個聚焦於風格、簡潔,高自訂性的超酷快速啟動附加元件。","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"Yay! Another Speed dial!","description":"Un addon con página de accessos directos que se enfoca en verse bien y ser altamente configurable pero facil de usar.","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["es"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"59.0","maxVersion":null}],"targetPlatforms":[],"signedState":2,"signedDate":1620892532000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["storage","contextMenus","tabs","downloads","bookmarks","unlimitedStorage"],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"48":"icons/icon.png","96":"icons/icon@2x.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/yayanotherspeeddial@bakadev.fr.xpi!/","location":"app-profile"},{"id":"uBlock0@raymondhill.net","syncGUID":"{f70fa12e-f672-41cf-b96c-cfa7eeecb76e}","version":"1.35.2","type":"extension","loader":null,"updateURL":null,"optionsURL":"dashboard.html","optionsType":3,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"uBlock Origin","description":"Finally, an efficient blocker. Easy on CPU and memory.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1542627999000,"updateDate":1623248210304,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/uBlock0@raymondhill.net.xpi","skinnable":false,"sourceURI":"https://addons.cdn.mozilla.net/user-media/addons/607454/ublock_origin-1.35.2-an+fx.xpi?filehash=sha256%3A8eccfa436bc5852b91ddb9628dca4bfd0ff5d2a302f2e9e595d801fa228c3975","releaseNotesURI":"https://addons.mozilla.org/versions/updateInfo/5224615/en-US/","softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"uBlock Origin","description":"Finally, an efficient blocker. Easy on CPU and memory.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"uBlock Origin","description":"Finally, an efficient blocker. Easy on CPU and memory.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["oc"]},{"name":"uBlock Origin","description":"Un bloqueur de nuisances efficace, qui ménagera votre processeur et votre mémoire vive.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"uBlock Origin","description":"Finalmente, um bloqueador eficiente. Leve na CPU e memória.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["pt-PT"]},{"name":"uBlock Origin","description":"高効率ブロッカーが遂に登場。CPUとメモリーの負担を抑えます。","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"uBlock Origin","description":"మొత్తానికి RAM ఇంకా CPU పై తేలికయిన, ఒక సమర్థవంతమైన నిరోధిని.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["te"]},{"name":"uBlock Origin","description":"Akhirnya, pemblokir iklan yang efisien. Ringan penggunaan CPU dan memori.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"uBlock Origin","description":"অবশেষে, একটি দক্ষ বিজ্ঞাপন রোধক। সিপিইউ এবং মেমরি সহায়ক।","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["bn"]},{"name":"uBlock Origin","description":"Lõpuks on valminud tõhus blokeerija. Protsessori- ja mälusõbralik.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["et"]},{"name":"uBlock Origin","description":"Einlik, in effisjinte adblocker. Brûkt hast gjin prosessorkrêft of ûnthâld.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["fy"]},{"name":"uBlock Origin","description":"Behingoz, blokeatzaile eraginkor bat. PUZ eta memorian arina.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["eu"]},{"name":"uBlock Origin","description":"Äntligen en effektiv blockerare. Snäll mot både processor och minne.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"uBlock Origin","description":"Konečně efektivní blokovač. Nezatěžuje CPU a paměť.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["cs"]},{"name":"uBlock Origin","description":"Най-накрая, ефективен блокер. Щадящ процесора и паметта.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"uBlock Origin","description":"ಕೊನೆಗೂ, ಒಂದು ದಕ್ಷ ನಿರ್ಬಂಧಕ. ಮಿತವಾದ ಸಿಪಿಯೂ ಹಾಗು ಮೆಮೊರಿ ಬಳಕೆ.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["kn"]},{"name":"uBlock Origin","description":"Ефективний блокувальник реклами таки з’явився. Не навантажує процесор та пам'ять.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"uBlock Origin","description":"Végre egy hatékony reklám- és követésblokkoló böngészőkhöz, amely kíméletes a processzorral és a memóriával.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"uBlock Origin","description":"آخر کار، ایک مؤثر اشتہار کو روکنے والا، یہ کم cpu اور میموری لیتا ہے.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ur"]},{"name":"uBlock Origin","description":"Finfine rendimenta reklamoblokilo. Afabla por ĉefprocesoro kaj memoro.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["eo"]},{"name":"uBlock Origin","description":"이 부가 기능은 효율적인 차단기입니다. CPU와 메모리에 주는 부담이 적습니다.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"uBlock Origin","description":"وأخيراً, مانع اعلانات كفوء. خفيف على المعالج و الذاكرة.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ar"]},{"name":"uBlock Origin","description":"Finalmente, un blocker efficiente. Leggero sulla CPU e sulla memoria.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"uBlock Origin","description":"Pagaliau, efektyvus blokatorius, neapkraunantis nei procesoriaus, nei darbinės atminties.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["lt"]},{"name":"uBlock Origin","description":"आख़िरकार, क्रोमियम-बेस्ड ब्राउज़रों के लिए एक कुशल अवरोधक। CPU और स्मृति पर आसान।","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["hi"]},{"name":"uBlock Origin","description":"இறுதியாக, ஒரு திறமையான விளம்பரத் தடுப்பான். கணினியின் மையச் செயற்பகுதியின் மேலும் நினைவகத்தின் மேலும் இலகுவானது.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ta"]},{"name":"uBlock Origin","description":"Axır ki, prosessor və yaddaş yükünü azaldan səmərəli bir əngəlləyici var.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["az"]},{"name":"uBlock Origin","description":"มาแล้ว! โปรแกรมบล็อกโฆษณาเบาเบา ไม่กิน ซีพียู หรือ แรม","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["th"]},{"name":"uBlock Origin","description":"Finally, an efficient blocker. Easy on CPU and memory.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["en-GB"]},{"name":"uBlock Origin","description":"शेवटी, एक कार्यक्षम ब्लॉकर क्रोमियम आधारित ब्राउझरांसाठी. सीपीयू आणि मेमरी वर सोपे जातो.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["mr"]},{"name":"uBlock Origin","description":"Endelig en effektiv blokkeringsutvidelse. Lavt CPU- og minnebruk.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["nb"]},{"name":"uBlock Origin","description":"როგორც იქნა, მძლავრი და შედეგიანი რეკლამების შემზღუდავი. ზოგავს CPU-ს და მეხსიერებას.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ka"]},{"name":"uBlock Origin","description":"Коначно, ефикасан блокатор. Ниски процесорски и меморијски захтеви.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["sr"]},{"name":"uBlock Origin","description":"Končno, učinkovita, procesorju in pomnilniku prijazna razširitev za blokiranje oglasov.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["sl"]},{"name":"uBlock Origin","description":"Beidzot, efektīvs bloķētājs. Nepārslogo procesoru un atmiņu.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["lv"]},{"name":"uBlock Origin","description":"Sa wakas! Isang magaling na blocker para sa Chromium-based browsers. Magaan sa CPU at memory.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["fil"]},{"name":"uBlock Origin","description":"一款高效的网络请求过滤工具,占用极低的内存和 CPU。","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"uBlock Origin","description":"Viimeinkin tehokas ja kevyt mainosten estäjä.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"uBlock Origin","description":"Վերջապե՛ս, արդյունավետ արգելափակիչ։ Խնայում է մշակիչը և հիշողությունը։","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["hy"]},{"name":"uBlock Origin","description":"În sfârșit, un blocant eficient. Are un impact mic asupra procesorului și memoriei.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ro"]},{"name":"uBlock Origin","description":"Жарнамаларды жақсы өшіретін Addon'дардың бірі. Компьютердің қуатың аз алады.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["kk"]},{"name":"uBlock Origin","description":"Konačno, efikasan bloker. Štedljiv na procesoru i memoriji.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["bs"]},{"name":"uBlock Origin","description":"Επιτέλους, ένας αποτελεσματικός blocker. Ελαφρύς για τον επεξεργαστή και τη μνήμη.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"uBlock Origin","description":"Por fin, un bloqueador eficiente con uso mínimo de procesador y memoria.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"uBlock Origin","description":"Finalmente, um bloqueador eficiente. Com baixo uso de memória e CPU.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"uBlock Origin","description":"סוף סוף, חוסם יעיל. קל על המעבד והזיכרון.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["he"]},{"name":"uBlock Origin","description":"Endelig en effektiv blocker. Lavt CPU- og hukommelsesforbrug.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"uBlock Origin","description":"Sonunda, etkili bir engelleyici. İşlemciyi ve belleği yormaz.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"uBlock Origin","description":"終於有套使用不多的 CPU 及記憶體資源的高效率阻擋器。","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"uBlock Origin","description":"Тинех Интернет тишкерӳҫӗ валли хӑвӑрт та витӗмлӗ чаркӑч пур.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["cv"]},{"name":"uBlock Origin","description":"Endelig en effektiv blokkeringsutvidelse. Lavt CPU- og minnebruk.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["no"]},{"name":"uBlock Origin","description":"Konačno, efikasan blokator. Lak na CPU i memoriji.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["hr"]},{"name":"uBlock Origin","description":"Eindelijk, een efficiënte adblocker. Gebruikt weinig processorkracht en geheugen.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"uBlock Origin","description":"Endlich ein effizienter Blocker. Prozessor-freundlich und bescheiden beim Speicherbedarf.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"uBlock Origin","description":"Konečne efektívny blokovač. Nezaťažuje CPU ani pamäť.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["sk"]},{"name":"uBlock Origin","description":"بالاخره، یک بلاکر کارآمد. کم حجم بر روی پردازنده و حافظه.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["fa"]},{"name":"uBlock Origin","description":"Cuối cùng, đã có một công cụ chặn quảng cáo hiệu quả, tiêu tốn ít CPU và bộ nhớ.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["vi"]},{"name":"uBlock Origin","description":"Finalment, un blocador eficient que utilitza pocs recursos de memòria i processador.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"uBlock Origin","description":"Ó fin, un bloqueador eficiente que non chupa toda a memoria e o procesador.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["gl"]},{"name":"uBlock Origin","description":"Më në fund, një bllokues efikas që nuk e rëndon procesorin dhe memorien.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["sq"]},{"name":"uBlock Origin","description":"Наконец-то, быстрый и эффективный блокировщик для браузеров.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"uBlock Origin","description":"Nareszcie skuteczny bloker charakteryzujący się niskim użyciem procesora i pamięci.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"uBlock Origin","description":"അവസാനം, ഒരു കാര്യക്ഷമമായ ബ്ലോക്കര്‍. ലഘുവായ CPU, memory ഉപയോഗം.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ml"]},{"name":"uBlock Origin","description":"Akhirnya, penyekat yang cekap. Tidak membebankan CPU dan memori.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ms"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"57.0","maxVersion":null}],"targetPlatforms":[],"signedState":2,"signedDate":1620114445000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["dns","menus","privacy","storage","tabs","unlimitedStorage","webNavigation","webRequest","webRequestBlocking"],"origins":["","http://*/*","https://*/*","file://*/*","https://easylist.to/*","https://*.fanboy.co.nz/*","https://filterlists.com/*","https://forums.lanik.us/*","https://github.com/*","https://*.github.io/*"]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"img/ublock.svg","32":"img/ublock.svg","48":"img/ublock.svg","64":"img/ublock.svg","96":"img/ublock.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{"webRequest":{"onBeforeRequest":[[{"incognito":null,"tabId":null,"types":null,"urls":["moz-extension://90be17cd-7169-4943-9a04-3cd8bf7fec41/web_accessible_resources/*"],"windowId":null},["blocking"]],[{"incognito":null,"tabId":null,"types":null,"urls":["http://*/*","https://*/*","ws://*/*","wss://*/*"],"windowId":null},["blocking"]]],"onHeadersReceived":[[{"incognito":null,"tabId":null,"types":null,"urls":["http://*/*","https://*/*","ws://*/*","wss://*/*"],"windowId":null},["blocking","responseHeaders"]]]}}},"hidden":false,"installTelemetryInfo":null,"recommendationState":{"validNotAfter":1777902445000,"validNotBefore":1620114445000,"states":["recommended-android","recommended"]},"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/uBlock0@raymondhill.net.xpi!/","location":"app-profile"}]} \ No newline at end of file +{"schemaVersion":33,"addons":[{"id":"chrome-gnome-shell@gnome.org","syncGUID":"{82508f32-b0ec-4e78-bf50-dc24a1c517d8}","version":"10.1","type":"extension","loader":null,"updateURL":null,"optionsURL":"options.html","optionsType":3,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"GNOME Shell integration","description":"This extension provides integration with GNOME Shell and the corresponding extensions repository https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1542628160000,"updateDate":1623941103000,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/chrome-gnome-shell@gnome.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"GNOME Shell integration","description":"This extension provides integration with GNOME Shell and the corresponding extensions repository https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Integracion a GNOME Shell","description":"Aquesta extension permet l'integracion a GNOME Shell e a las extensions correspondentas del depaus https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["oc"]},{"name":"GNOME Shell integration","description":"This extension provides integration with GNOME Shell and the corresponding extensions repository https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["pt-PT"]},{"name":"Intégration à GNOME Shell","description":"Cette extension permet l'intégration à GNOME Shell et aux extensions correspondantes du dépôt https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Integrasi Shell GNOME","description":"Ekstensi ini menyediakan integrasi dengan Shell GNOME dan repositori ekstensi yang berhubungan https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"GNOME Shell-integration","description":"Detta tillägg tillhandahåller integration med GNOME Shell och det motsvarande tilläggsförrådet https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"Integrace do GNOME Shell","description":"Toto rozšíření poskytuje integraci s GNOME Shell a shoduje se s repozitářem rozšíření https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["cs"]},{"name":"GNOME Shell integráció","description":"Ez a kiterjesztés integrációt biztosít a GNOME Shell-lel, és a hozzá tartozó https://extensions.gnome.org kiterjesztéstárolóval","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"그놈 셸 확장 기능","description":"이 확장 기능은 그놈 셸 통합 기능이 있으며 관련 확장 기능 저장소는 https://extensions.gnome.org에 있습니다","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"Amalachadh slige GNOMW","description":"Bheir an leudachan seo dhut amalachadh le Slige GNOME agus Shell ionad-tasgaidh nan leudachan co-cheangailte rithe https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["gd"]},{"name":"Integració amb el GNOME Shell","description":"Aquesta extensió proporciona integració amb GNOME Shell i el corresponent dipòsit d'extensions https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"Integrácia do Shellu prostredia GNOME","description":"Toto rozšírenie poskytuje integráciu do Shellu prostredia GNOME a príslušný repozitár rozšírení https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["sk"]},{"name":"Интеграција Гномове шкољке","description":"Ово проширење обезбеђује интеграцију са Гномовом шкољком и одговарајућом ризницом проширења „https://extensions.gnome.org“","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["sr"]},{"name":"GNOME Shell integration","description":"Данное расширение добавляет интеграцию с GNOME Shell и репозиторием расширений https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"Integracja z GNOME Shell","description":"To rozszerzenie dostarcza integrację z GNOME Shell i repozytorium rozszerzeń https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"GNOME Shell integration","description":"This extension provides integration with GNOME Shell and the corresponding extensions repository https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["sl"]},{"name":"Integracija GNOME ljuske","description":"Ovo proširenje omogućuje integraciju s GNOME ljuskom i odgovarajućem repozitoriju proširenja https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["hr"]},{"name":"Gnome Shell -integraatio","description":"Tämä laajennus tarjoaa integraation Gnome Shellin ja Gnome Shellin laajennustietovaraston https://extensions.gnome.org kanssa","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"GNOME Shell integration","description":"Αυτή η επέκταση παρέχει ενσωμάτωση με το GNOME Shell και τα πρόσθετα του από το https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"Integração com GNOME Shell","description":"Essa extensão fornece integração com o GNOME Shell e com o repositório de extensões correspondente, o https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"Integración con GNOME Shell","description":"Esta extensión proporciona integración con GNOME Shell y el correspondiente repositorio de extensiones https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"GNOME Kabuk bütünleşmesi","description":"Bu uygulama, GNOME Kabuk ve buna uygun uzantı deposu olan https://extensions.gnome.org ile bütünleşme sağlar","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"Gnome-shell-integratie","description":"Deze extensie voorziet in de integratie met Gnome-shell en de bijbehorende website met extensies https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"Integratsioon GNOME Shelliga","description":"See laiendus võimaldab integratsiooni GNOME Shelli ja selle laienduste hoidlaga aadressil https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["et"]},{"name":"Integrazione con GNOME Shell","description":"Questa estensione fornisce l'integrazione con GNOME Shell e il corrispondente repository delle estensioni https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"GNOME Shell-Integration","description":"Diese Erweiterung ermöglicht die Integration mit der GNOME Shell und dem dazugehörenden Erweiterungs-Repository von https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Ingegrasjon med GNOME-skallet","description":"This extension provides integration with GNOME Shell and the corresponding extensions repository https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["nb"]},{"name":"GNOME Shell-integration","description":"Denne udvidelse giver integration med GNOME Shell og det tilhørende udvidelsesarkiv https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"Integración de GNOME Shell","description":"Esta extensión fornece integración con GNOME SHell e o correspondente repositorio de extensións https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["gl"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"56.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1521613805000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["alarms","nativeMessaging","notifications","storage","tabs"],"origins":["https://extensions.gnome.org/","https://extensions.gnome.org/*"]},"optionalPermissions":{"permissions":["idle"],"origins":[]},"icons":{"16":"icons/GnomeLogo-16.png","48":"icons/GnomeLogo-48.png","128":"icons/GnomeLogo-128.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{}},"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/chrome-gnome-shell@gnome.org.xpi!/","location":"app-profile"},{"id":"wayback_machine@mozilla.org","syncGUID":"{bd345b14-ed21-4d32-9720-0b70258947e4}","version":"1.8.6","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Wayback Machine","description":"Reduce annoying 404 pages by automatically checking for an archived copy in the Wayback Machine.","creator":null,"homepageURL":"https://archive.org/","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1542629092000,"updateDate":1623941103000,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/wayback_machine@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"48.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1524081006000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs","activeTab","storage","webRequest","webRequestBlocking","contextMenus"],"origins":["http://*/*","https://*/*","*://*/*",""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"48":"images/icon.png","96":"images/icon@2x.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{"webRequest":{"onCompleted":[[{"incognito":null,"tabId":null,"types":["main_frame"],"urls":[""],"windowId":null},null]],"onErrorOccurred":[[{"incognito":null,"tabId":null,"types":["main_frame"],"urls":[""],"windowId":null}]]}}},"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/wayback_machine@mozilla.org.xpi!/","location":"app-profile"},{"id":"{9350bc42-47fb-4598-ae0f-825e3dd9ceba}","syncGUID":"{bfe4a8ba-fc6d-4290-b03c-272cf99e1ed1}","version":"1.3.8","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Absolute Enable Right Click & Copy","description":"Force Enable Right Click & Copy","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1542628082000,"updateDate":1623941103000,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/{9350bc42-47fb-4598-ae0f-825e3dd9ceba}.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"48.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1547160306000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs","storage","activeTab"],"origins":[""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"images/16px.png","32":"images/32px.png","48":"images/48px.png","128":"images/128px.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{}},"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/%7B9350bc42-47fb-4598-ae0f-825e3dd9ceba%7D.xpi!/","location":"app-profile"},{"id":"{5173bfae-59df-4a20-a9dd-0ab3e8c82e36}","syncGUID":"{48035ddb-f446-484e-85ac-5586066ac936}","version":"0.1.0","type":"extension","loader":null,"optionsURL":"options.html","optionsType":5,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Sci-Hub X Now!","description":"Free access to academic papers with just a single click via sci-hub!","creator":"Orçun Özdemir and Lucas Sterzinger and Gerry Chen","homepageURL":"https://github.com/gchenfc/sci-hub-now","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1602855989000,"updateDate":1623941103000,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/{5173bfae-59df-4a20-a9dd-0ab3e8c82e36}.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"48.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1610323518000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["activeTab","contextMenus","storage"],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"48":"icons/48x48.png","96":"icons/96x96.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":false,"installTelemetryInfo":{"source":"amo","sourceURL":"https://addons.mozilla.org/en-US/firefox/addon/sci-hub-x-now/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search","method":"amWebAPI"},"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/%7B5173bfae-59df-4a20-a9dd-0ab3e8c82e36%7D.xpi!/","location":"app-profile"},{"id":"keepassxc-browser@keepassxc.org","syncGUID":"{5c925fa7-bdb3-44bc-b792-b5912759722a}","version":"1.7.8.1","type":"extension","loader":null,"updateURL":null,"optionsURL":"options/options.html","optionsType":3,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"KeePassXC-Browser","description":"KeePassXC integration for modern web browsers","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1606947306641,"updateDate":1623941103000,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/keepassxc-browser@keepassxc.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"KeePassXC-Browser","description":"KeePassXC integration for modern web browsers","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"KeePassXC-Browser","description":"モダンなウェブブラウザーのための KeePassXC 統合","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"KeePassXC-Browser","description":"KeePassXC integratsioon moodsatele brauseritele","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["et"]},{"name":"KeePassXC-Browser","description":"KeePassXC интеграция за съвременните уеб браузъри","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"KeePassXC-Browser","description":"Integrasi KeePassXC untuk peramban web modern","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"KeePassXC-Browser","description":"Intégration de KeePassXC pour les navigateurs Web modernes","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"KeePassXC-Browser","description":"Napojení na KeePassXC pro moderní webové prohlížeče","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["cs"]},{"name":"KeePassXC-Browser","description":"KeePassXC integráció a modern webböngészőkhöz","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"KeePassXC-Browser","description":"Integrazione di KeePassXC per browser web moderni","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"KeePassXC-Browser","description":"Сполучення KeePassXC з сучасними переглядачами тенет","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"KeePassXC-Browser","description":"KeePassXC-Integration für moderne Webbrowser","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"KeePassXC-Browser","description":"현대적인 웹 브라우저용 KeePassXC 통합","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"KeePassXC-Browser","description":"Integração KeepassXC para os navegadores modernos","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["pt-PT"]},{"name":"KeePassXC-Browser","description":"Integracja KeePassXC z nowoczesnymi przeglądarkami internetowymi","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"KeePassXC-Browser","description":"KeePassXC integration för moderna webbläsare","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"KeePassXC-Browser","description":"Интеграция KeePassXC в современные веб-браузеры","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"KeePassXC-Browser","description":"KeePassXC-integraatio moderneille nettiselaimille","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"KeePassXC-Browser","description":"KeePassXC integrare pentru browsere web moderne","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["ro"]},{"name":"KeePassXC-Browser","description":"KeePassXC 与现代 Web 浏览器的集成","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"KeePassXC-Browser","description":"Integración de KeePassXC para navegadores web modernos","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"KeePassXC-Browser","description":"Ενσωμάτωση KeePassXC για σύγχρονα προγράμματα περιήγησης ιστού","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"KeePassXC-Browser","description":"KeePassXC 與現代瀏覽器的整合","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"KeePassXC-Browser","description":"KeePassXC-integrering til moderne webbrowsere","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"KeePassXC-Browser","description":"Integração ao KeePassXC para navegadores modernos","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"KeePassXC-Browser","description":"KeePassXC integracija za sodobne spletne brskalnike","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["sl"]},{"name":"KeePassXC-Browser","description":"KeePassXC integratio pro interretialibus navigatoribus modernis","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["la"]},{"name":"KeePassXC-Browser","description":"Modern web tarayıcıları için KeePassXC bütünleşmesi","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"KeePassXC-Browser","description":"KeePassXC-integratie voor moderne webbrowsers","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["nl-NL"]},{"name":"KeePassXC-Browser","description":"KeePassXC-integratie voor moderne webbrowsers","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"KeePassXC-Browser","description":"Integração KeepassXC para os navegadores modernos","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["pt"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"67.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1618234520000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["activeTab","contextMenus","clipboardWrite","nativeMessaging","notifications","storage","tabs","webNavigation","webRequest","webRequestBlocking"],"origins":["https://*/*","http://*/*","https://api.github.com/",""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"icons/keepassxc.svg","48":"icons/keepassxc.svg","64":"icons/keepassxc.svg","96":"icons/keepassxc.svg","128":"icons/keepassxc.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":false,"installTelemetryInfo":{"source":"amo","sourceURL":"https://addons.mozilla.org/en-US/firefox/addon/keepassxc-browser/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search","method":"amWebAPI"},"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/keepassxc-browser@keepassxc.org.xpi!/","location":"app-profile"},{"id":"yayanotherspeeddial@bakadev.fr","syncGUID":"{3095ecca-6e6a-42d5-b1d5-6778d84c2a99}","version":"1.5.2.1","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Yay! Another Speed dial!","description":"A cool and highly customizable Speed Dial focused on style and simplicity.","creator":"Loïc","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1552785444000,"updateDate":1623941103000,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/yayanotherspeeddial@bakadev.fr.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Yay! Another Speed dial!","description":"A cool and highly customizable Speed Dial focused on style and simplicity.","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Yay! Another Speed dial!","description":"Un superbe Speed Dial, complètement personnalisable, concentré sur le style et la simplicité.","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Yay! Another Speed dial!","description":"Egy rendkívül jól testreszabható gyorshívó, amit a stílus és az egyszerűség jellemez.","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"Yay! Another Speed dial!","description":"Eine coole und höchst anpassbare Speed Dial Erweiterung, fokussiert auf Aussehen und Einfachheit.","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Yay! Another Speed dial!","description":"一个聚焦于风格、简洁,高自定义性的超酷快速启动附加组件。","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"Yay! Another Speed dial!","description":"Классная Экспресс-панель, широко кастомизируемая, простая и стильная.","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"Yay! Another Speed dial!","description":"Un addon con página de accessos directos que se enfoca en verse bien y ser altamente configurable pero facil de usar.","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"Yay! Another Speed dial!","description":"一個聚焦於風格、簡潔,高自訂性的超酷快速啟動附加元件。","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"59.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1620892532000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["storage","contextMenus","tabs","downloads","bookmarks","unlimitedStorage"],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"48":"icons/icon.png","96":"icons/icon@2x.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{}},"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/yayanotherspeeddial@bakadev.fr.xpi!/","location":"app-profile"},{"id":"formautofill@mozilla.org","syncGUID":"{83e890fe-16cc-459b-bbd5-c7eb1b2cf3a5}","version":"1.0.1","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Form Autofill","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1541084183000,"updateDate":1624468638000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/formautofill@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{}},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/formautofill@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"screenshots@mozilla.org","syncGUID":"{e693a1c7-6163-43ad-ac2d-896a25f333dd}","version":"39.0.1","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Firefox Screenshots","description":"Take clips and screenshots from the Web and save them temporarily or permanently.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1541084183000,"updateDate":1624468638000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/screenshots@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"57.0a1","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["activeTab","downloads","tabs","storage","notifications","clipboardWrite","contextMenus"],"origins":["","https://screenshots.firefox.com/","https://screenshots.firefox.com/*"]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{}},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/screenshots@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"webcompat-reporter@mozilla.org","syncGUID":"{c50bfe40-12f2-483e-b633-744e2561c742}","version":"1.4.2","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"WebCompat Reporter","description":"Report site compatibility issues on webcompat.com","creator":"Thomas Wisniewski ","homepageURL":"https://github.com/mozilla/webcompat-reporter","developers":null,"translators":null,"contributors":null},"visible":true,"active":false,"userDisabled":true,"appDisabled":false,"embedderDisabled":false,"installDate":1541084183000,"updateDate":1624468638000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/webcompat-reporter@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs"],"origins":[""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"icons/lightbulb.svg","32":"icons/lightbulb.svg","48":"icons/lightbulb.svg","96":"icons/lightbulb.svg","128":"icons/lightbulb.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/webcompat-reporter@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"webcompat@mozilla.org","syncGUID":"{d68069e0-85d1-41a9-a0ce-6626a27d5361}","version":"22.2.0","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Web Compatibility Interventions","description":"Urgent post-release fixes for web compatibility.","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1541084183000,"updateDate":1624468638000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/webcompat@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"59.0b5","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs","webNavigation","webRequest","webRequestBlocking"],"origins":[""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{"webRequest":{"onBeforeRequest":[[{"incognito":null,"tabId":null,"types":["script"],"urls":["*://webcompat-addon-testbed.herokuapp.com/shims_test.js","*://example.com/browser/browser/extensions/webcompat/tests/browser/shims_test.js","*://example.com/browser/browser/extensions/webcompat/tests/browser/shims_test_2.js","*://example.com/browser/browser/extensions/webcompat/tests/browser/shims_test_3.js","*://cdn.adsafeprotected.com/iasPET.1.js","*://static.adsafeprotected.com/vans-adapter-google-ima.js","*://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js","*://auth.9c9media.ca/auth/main.js","*://libs.coremetrics.com/eluminate.js","*://connect.facebook.net/*/sdk.js*","*://connect.facebook.net/*/all.js*","*://www.google-analytics.com/analytics.js","*://www.google-analytics.com/plugins/ua/ec.js","*://www.google-analytics.com/gtm/js","*://www.googletagmanager.com/gtm.js","*://ssl.google-analytics.com/ga.js","*://www.googletagservices.com/tag/js/gpt.js","*://securepubads.g.doubleclick.net/tag/js/gpt.js","*://securepubads.g.doubleclick.net/gpt/pubads_impl_*.js","*://s0.2mdn.net/instream/html5/ima3.js","*://imasdk.googleapis.com/js/sdkloader/ima3.js","*://id.rambler.ru/rambler-id-helper/auth_events.js","*://media.richrelevance.com/rrserver/js/1.2/p13n.js"],"windowId":null},["blocking"]]],"onBeforeSendHeaders":[[{"incognito":null,"tabId":null,"types":null,"urls":["*://webcompat-addon-testbed.herokuapp.com/*"],"windowId":null},["blocking","requestHeaders"]],[{"incognito":null,"tabId":null,"types":null,"urls":["*://*.att.tv/*"],"windowId":null},["blocking","requestHeaders"]],[{"incognito":null,"tabId":null,"types":null,"urls":["*://steamcommunity.com/chat*"],"windowId":null},["blocking","requestHeaders"]],[{"incognito":null,"tabId":null,"types":null,"urls":["https://watch.sling.com/*","https://www.sling.com/*"],"windowId":null},["blocking","requestHeaders"]],[{"incognito":null,"tabId":null,"types":null,"urls":["https://www.mobilesuica.com/*"],"windowId":null},["blocking","requestHeaders"]],[{"incognito":null,"tabId":null,"types":null,"urls":["*://*.bancosantander.es/*","*://*.gruposantander.es/*","*://*.santander.co.uk/*","*://bob.santanderbank.com/*","*://rolb.santanderbank.com/*"],"windowId":null},["blocking","requestHeaders"]],[{"incognito":null,"tabId":null,"types":null,"urls":["*://*.spectrum.net/voice/*"],"windowId":null},["blocking","requestHeaders"]]],"onHeadersReceived":[[{"incognito":null,"tabId":null,"types":null,"urls":["https://ads-us.rd.linksynergy.com/as.php*"],"windowId":null},["blocking","responseHeaders"]]]}}},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/webcompat@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"doh-rollout@mozilla.org","syncGUID":"{93ddb028-d448-4733-9438-c152fb327f1e}","version":"2.0.0","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"DoH Roll-Out","description":"This used to be a Mozilla add-on that supported the roll-out of DoH, but now only exists as a stub to enable migrations.","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1579529887000,"updateDate":1624468638000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/doh-rollout@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"72.0a1","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/doh-rollout@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"pictureinpicture@mozilla.org","syncGUID":"{8e1b1da0-727b-4310-a91a-6ecfba0cdeb5}","version":"1.0.0","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Picture-In-Picture","description":"Fixes for web compatibility with Picture-in-Picture","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1622474771000,"updateDate":1624468638000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/pictureinpicture@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"88.0a1","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/pictureinpicture@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"bing@search.mozilla.org","syncGUID":"{676e9101-35f2-43c8-9885-420824540115}","version":"1.3","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Bing","description":"Microsoft Bing","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1569709370787,"updateDate":1568839541000,"applyBackgroundUpdates":1,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/bing/","location":"app-builtin"},{"id":"google@search.mozilla.org","syncGUID":"{d61f55d6-06fb-4158-bcb7-9d36dec4e9b2}","version":"1.1","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1569709370845,"updateDate":1568839541000,"applyBackgroundUpdates":1,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["b-1-d"]},{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["b-1-e"]},{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["b-d"]},{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["b-e"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/google/","location":"app-builtin"},{"id":"wikipedia@search.mozilla.org","syncGUID":"{f3d5848e-8a3f-458b-808c-e606c35c0620}","version":"1.1","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Wikipedia (en)","description":"Wikipedia, the Free Encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1569709371001,"updateDate":1568839541000,"applyBackgroundUpdates":1,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Wikipedia (en)","description":"Wikipedia, the Free Encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Wikipedija (hr)","description":"Wikipedija, slobodna enciklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hr"]},{"name":"Wikipedia (fi)","description":"Wikipedia (fi), vapaa tietosanakirja","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"Wikipedia (hy)","description":"Վիքիփեդիա՝ ազատ հանրագիտարան","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hy"]},{"name":"Уикипедия (kk)","description":"Уикипедия (kk)","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["kk"]},{"name":"Вікіпедыя (be)","description":"Вікіпедыя, свабодная энцыклапедыя","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["be"]},{"name":"위키백과 (ko)","description":"Wikipedia, the free encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["kr"]},{"name":"Wikipedia (ro)","description":"Wikipedia, enciclopedia liberă","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ro"]},{"name":"Wikipedia (bs)","description":"Slobodna enciklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["bs"]},{"name":"Wikipedia (pt)","description":"Wikipédia, a enciclopédia livre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["pt"]},{"name":"Vikipetã (gn)","description":"Vikipetã, opaite tembikuaa hekosãsóva renda","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["gn"]},{"name":"વિકિપીડિયા (gu)","description":"વીકીપીડિયા, મુક્ત એનસાયક્લોપીડિયા","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["gu"]},{"name":"Wikipedia (el)","description":"Βικιπαίδεια, η ελεύθερη εγκυκλοπαίδεια","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"Wikipedia (es)","description":"Wikipedia, la enciclopedia libre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"ויקיפדיה","description":"ויקיפדיה","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["he"]},{"name":"Wikipedia (da)","description":"Wikipedia, den frie encyklopædi","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"Wikipedia (tr)","description":"Vikipedi, özgür ansiklopedi","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"Wikipedija (hsb)","description":"Wikipedija, swobodna encyklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hsb"]},{"name":"Wikipedy (fy)","description":"De fergese ensyklopedy","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fy-NL"]},{"name":"विकिपीडिया (ne)","description":"विकिपिडिया एक स्वतन्त्र विश्वकोष","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ne"]},{"name":"Wikipedia (nl)","description":"De vrije encyclopedie","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"Wikipedia (ja)","description":"Wikipedia - フリー百科事典","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"Vikipeedia (et)","description":"Vikipeedia, vaba entsüklopeedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["et"]},{"name":"Wikipèdia (oc)","description":"Wikipèdia, l'enciclopèdia liura","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["oc"]},{"name":"Wicipedia (cy)","description":"Wicipedia, Y Gwyddioniadur Rhydd","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["cy"]},{"name":"వికీపీడియా (te)","description":"వికీపీడియా (te)","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["te"]},{"name":"Wikipédia (fr)","description":"Wikipédia, l'encyclopédie libre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Wikipedia (tl)","description":"Wikipedia, ang malayang ensiklopedya","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["tl"]},{"name":"维基百科","description":"维基百科,自由的百科全书","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"Wikipedia (lij)","description":"Wikipedia, l'enciclopedia libera","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["lij"]},{"name":"វីគីភីឌា (km)","description":"វីគីភីឌា សព្វ​វចនា​ធិប្បាយ​សេរី","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["km"]},{"name":"Уикипедия (bg)","description":"Уикипедия, свободната енциклоподия","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"Wikipedia (id)","description":"Wikipedia, ensiklopedia bebas","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"Wikipedia (pa)","description":"ਵਿਕਿਪੀਡਿਆ, ਮੁਫ਼ਤ/ਮੁਕਤ ਸ਼ਬਦਕੋਸ਼","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["pa"]},{"name":"উইকিপিডিয়া (bn)","description":"উইকিপিডিয়া, মুক্ত বিশ্বকোষ","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["bn"]},{"name":"Wikipedia (eu)","description":"Wikipedia, entziklopedia askea","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["eu"]},{"name":"Wikipedie (cs)","description":"Wikipedia, svobodná encyclopedie","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["cz"]},{"name":"Wikipédia (hu)","description":"Wikipedia, a szabad enciklopédia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"Wikipedia (kn)","description":"Wikipedia, the free encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["kn"]},{"name":"Wikipedia (is)","description":"Wikipedia, the free encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["is"]},{"name":"Вікіпедія (uk)","description":"Вікіпедія, вільна енциклопедія","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"Wikipedia (kab)","description":"Wikipedia, tasanayt tilellit","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["kab"]},{"name":"Wikipedia (zh)","description":"維基百科,自由的百科全書","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"ویکیپیڈیا (ur)","description":"ویکیپیڈیا آزاد دائرۃ المعارف","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ur"]},{"name":"Vikipedio (eo)","description":"Vikipedio, la libera enciklopedio","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["eo"]},{"name":"Wikipedia (si)","description":"Wikipedia, the free encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["si"]},{"name":"ويكيبيديا (ar)","description":"ويكيبيديا (ar)","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ar"]},{"name":"Wikipedia (vi)","description":"Wikipedia, bách khoa toàn thư mở","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["vi"]},{"name":"ვიკიპედია (ka)","description":"ვიკიპედია, თავისუფალი ენციკლოპედია","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ka"]},{"name":"Uicipeid (gd)","description":"Wikipedia, An leabhar mòr-eòlais","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["gd"]},{"name":"Wikipedia (it)","description":"Wikipedia, l'enciclopedia libera","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"Vikipediya (uz)","description":"Vikipediya, ochiq ensiklopediya","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["uz"]},{"name":"Wikipedia (lt)","description":"Vikipedija, laisvoji enciklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["lt"]},{"name":"Wikipedia (sq)","description":"Wikipedia, enciklopedia e lirë","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sq"]},{"name":"Vicipéid (ga)","description":"Vicipéid, an Chiclipéid Shaor","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ga-IE"]},{"name":"विकिपीडिया (hi)","description":"विकिपीडिया (हिन्दी)","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hi"]},{"name":"Vikipedeja (ltg)","description":"Vikipēdija, breivuo eņciklopedeja","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ltg"]},{"name":"விக்கிப்பீடியா (ta)","description":"விக்கிப்பீடியா (ta)","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ta"]},{"name":"Vikipediya (az)","description":"Vikipediya, açıq ensiklopediya","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["az"]},{"name":"Википедија (mk)","description":"Википедија, слободната енциклопедија","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["mk"]},{"name":"วิกิพีเดีย","description":"วิกิพีเดีย สารานุกรมเสรี","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["th"]},{"name":"Wikipedia (de)","description":"Wikipedia, die freie Enzyklopädie","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Wikipedija (dsb)","description":"Wikipedija, lichotna encyklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["dsb"]},{"name":"विकिपीडिया (mr)","description":"विकिपीडिया, मोफत माहितीकोष","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["mr"]},{"name":"Wikipedia (ast)","description":"La enciclopedia llibre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ast"]},{"name":"Wikipedia (my)","description":"အခမဲ့လွတ်လပ်စွယ်စုံကျမ်း","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["my"]},{"name":"Wikipedia (rm)","description":"Vichipedia, l'enciclopedia libra","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["rm"]},{"name":"Wikipedia (nn)","description":"Wikipedia, det frie oppslagsverket","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["NN"]},{"name":"Wikipedia (wo)","description":"Wikipedia, Jimbulang bu Ubbeeku bi","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["wo"]},{"name":"Wikipedia (gl)","description":"Wikipedia, a enciclopedia libre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["gl"]},{"name":"Viquipèdia (ca)","description":"L'enciclopèdia lliure","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"Wikipédia (sk)","description":"Wikipédia, slobodná a otvorená encyklopédia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sk"]},{"name":"Wikipedia (af)","description":"Wikipedia, die vrye ensiklopedie","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["af"]},{"name":"ویکی‌پدیا (fa)","description":"ویکی‌پدیا، دانشنامهٔ آزاد","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fa"]},{"name":"Википедија (sr)","description":"Претрага Википедије на српском језику","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sr"]},{"name":"Wikipedia (ia)","description":"Wikipedia, le encyclopedia libere","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ia"]},{"name":"Wikipedia (no)","description":"Wikipedia, den frie encyklopedi","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["NO"]},{"name":"Wikipedia (ms)","description":"Wikipedia, ensiklopedia bebas","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ms"]},{"name":"Википедия (ru)","description":"Википедия, свободная энциклопедия","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"Wikipedia (br)","description":"Wikipedia, an holloueziadur digor","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["br"]},{"name":"Wikipedia (pl)","description":"Wikipedia, wolna encyklopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"Вікіпэдыя (be-tarask)","description":"Вікіпэдыя, вольная энцыкляпэдыя","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["be-tarask"]},{"name":"Wikipedia (sv)","description":"Wikipedia, den fria encyklopedin","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sv-SE"]},{"name":"ວິກິພີເດຍ (lo)","description":"ວິກິພີເດຍ, ສາລານຸກົມເສລີ","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["lo"]},{"name":"Wikipedija (sl)","description":"Wikipedija, prosta enciklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sl"]},{"name":"Vikipēdija","description":"Vikipēdija, brīvā enciklopēdija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["lv"]},{"name":"Biquipedia (an)","description":"A enciclopedia Libre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["an"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/wikipedia/","location":"app-builtin"},{"id":"ddg@search.mozilla.org","syncGUID":"{d266c863-eb3a-4a16-a017-a58dde5b3a76}","version":"1.1","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"DuckDuckGo","description":"Search DuckDuckGo","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1569709371053,"updateDate":1568839541000,"applyBackgroundUpdates":1,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/ddg/","location":"app-builtin"},{"id":"ebay@search.mozilla.org","syncGUID":"{caa1cea7-55c5-4750-b65f-55ced3f5309f}","version":"1.3","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1594071183499,"applyBackgroundUpdates":1,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ie"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ch"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["at"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["au"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["be"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fr"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/ebay/","location":"app-builtin"},{"id":"firefox-alpenglow@mozilla.org","syncGUID":"{c545409f-983c-4328-95e3-6830f10e078a}","version":"1.4","type":"theme","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Firefox Alpenglow","description":"Use a colorful appearance for buttons, menus, and windows.","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":false,"userDisabled":true,"appDisabled":false,"embedderDisabled":false,"installDate":1604968137971,"applyBackgroundUpdates":1,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"userPermissions":null,"optionalPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://builtin-themes/alpenglow/","location":"app-builtin"},{"id":"default-theme@mozilla.org","syncGUID":"{cd4717b9-58bd-4ede-90e6-a591641227b2}","version":"1.2","type":"theme","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"System theme","description":"Follow the operating system setting for buttons, menus, and windows.","creator":"Mozilla","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1604968444292,"applyBackgroundUpdates":1,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"userPermissions":null,"optionalPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://default-theme/","location":"app-builtin"},{"id":"firefox-compact-dark@mozilla.org","syncGUID":"{ab1c995c-3f5c-48bc-90c2-b62ac992bd5f}","version":"1.2","type":"theme","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Dark","description":"A theme with a dark color scheme.","creator":"Mozilla","developers":null,"translators":null,"contributors":null},"visible":true,"active":false,"userDisabled":true,"appDisabled":false,"embedderDisabled":false,"installDate":1604968444295,"applyBackgroundUpdates":1,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"userPermissions":null,"optionalPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://builtin-themes/dark/","location":"app-builtin"},{"id":"firefox-compact-light@mozilla.org","syncGUID":"{a4e3a0da-ee94-4b52-b816-ea6d3195739b}","version":"1.2","type":"theme","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Light","description":"A theme with a light color scheme.","creator":"Mozilla","developers":null,"translators":null,"contributors":null},"visible":true,"active":false,"userDisabled":true,"appDisabled":false,"embedderDisabled":false,"installDate":1604968444296,"applyBackgroundUpdates":1,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"userPermissions":null,"optionalPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://builtin-themes/light/","location":"app-builtin"},{"id":"amazon@search.mozilla.org","syncGUID":"{7581a3a9-689a-4c01-986d-d9d98832ff5e}","version":"1.9","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Amazon.com.au","description":"Amazon.com.au Search","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1618002157570,"applyBackgroundUpdates":1,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Amazon.com.au","description":"Amazon.com.au Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["au"]},{"name":"Amazon.ca","description":"Amazon.ca Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"Amazon.co.uk","description":"Amazon.co.uk Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en-GB-adm"]},{"name":"Amazon.es","description":"Amazon.es","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["spain"]},{"name":"Amazon.de","description":"Amazon.de Suche","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["de-adm"]},{"name":"Amazon.fr","description":"Recherche Amazon.fr","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["france"]},{"name":"Amazon.nl","description":"Amazon.nl Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"Amazon.co.uk","description":"Amazon.co.uk Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en-GB"]},{"name":"Amazon.co.jp","description":"Amazon.co.jp Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["jp"]},{"name":"Amazon.se","description":"Amazon.se","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sweden"]},{"name":"Amazon.it","description":"Ricerca Amazon.it","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"Amazon.in","description":"Amazon.in Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["in"]},{"name":"Amazon.de","description":"Amazon.de Suche","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["de"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/amazon/","location":"app-builtin"},{"id":"{b7f9d2cd-d772-4302-8c3f-eb941af36f76}","syncGUID":"{e26c6766-736d-40be-b9b8-c7da7cd75a9e}","version":"1.1.48","type":"extension","loader":null,"updateURL":null,"optionsURL":"pages/options/options.html","optionsType":5,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Privacy Redirect","description":"Redirects Twitter, YouTube, Instagram and more to privacy friendly alternatives.","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1601768229000,"updateDate":1626193129444,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/{b7f9d2cd-d772-4302-8c3f-eb941af36f76}.xpi","skinnable":false,"sourceURI":"https://addons.cdn.mozilla.net/user-media/addons/2600548/privacy_redirect-1.1.48-an+fx.xpi?filehash=sha256%3Ab1ee93dd4ead3286373f3a6475e32c3f51b291a5cc6f37abbdbfb8ba84350182","releaseNotesURI":"https://addons.mozilla.org/versions/updateInfo/5263539/en-US/","softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Privacy Redirect","description":"Redirects Twitter, YouTube, Instagram and more to privacy friendly alternatives.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Privacy Redirect","description":"Redirige les requêtes les demandes Twitter, YouTube, Instagram et Google Maps vers des alternatives respectueuses de la vie privée. pour Twitter, YouTube, Instagram et Google Maps vers des alternatives respectueuses de la vie privée.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Privacy Redirect","description":"Reindirizza Twitter, YouTube, Instagram ed altri verso alternative rispettose della privacy.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"Privacy Redirect","description":"将 Twitter、YouTube、Instagram 和 Google Maps 重定向至尊重隐私的替代品","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"Privacy Redirect","description":"Przekierowuje serwisy takie jak: Twitter, YouTube, Instagram i Google Maps do alternatyw sprzyjających prywatności.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"Privacy Redirect","description":"Leitet Anfragen von Twitter, YouTube, Instagram & Google Maps auf datenschutzfreundliche Alternativen weiter.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Privacy Redirect","description":"Redirige las solicitudes de Twitter, Youtube, Instagram, Google Maps, Reddit y la Búsqueda de Google a alternativas que respetan su privacidad.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"Privacy Redirect","description":"Перенаправляет запросы к Twitter, YouTube, Instagram и Google Maps на альтернативные сервисы, дружелюбные к приватности.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"Privacy Redirect","description":"Twitter, YouTube, Instagram, Google Haritalar, Reddit & Google Arama bağlantılarını gizlilik dostu alternatiflerine yönlendirir.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["tr"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"67.0","maxVersion":null}],"targetPlatforms":[],"signedState":2,"signedDate":1625874941000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["storage","webRequest","webRequestBlocking"],"origins":["","*://twitter.com/*","*://www.twitter.com/*","*://mobile.twitter.com/*","*://pbs.twimg.com/*","*://video.twimg.com/*","*://invidious.snopyta.org/*","*://invidious.xyz/*","*://invidious.kavin.rocks/*","*://tube.connect.cafe/*","*://invidious.zapashcanon.fr/*","*://invidiou.site/*","*://vid.mint.lgbt/*","*://invidious.site/*","*://yewtu.be/*","*://invidious.tube/*","*://invidious.silkky.cloud/*","*://invidious.fdn.fr/*","*://invidious.himiko.cloud/*","*://inv.skyn3t.in/*","*://tube.incognet.io/*","*://invidious.tinfoil-hat.net/*","*://invidious.namazso.eu/*","*://vid.puffyan.us/*","*://dev.viewtube.io/*","*://invidious.048596.xyz/*","*://fz253lmuao3strwbfbmx46yu7acac2jz27iwtorgmbqlkurlclmancad.onion/*","*://qklhadlycap4cnod.onion/*","*://c7hqkpkpemu6e7emz5b4vyz7idjgdvgaaa3dyimmeojqbgpea3xqjoid.onion/*","*://w6ijuptxiku4xpnnaetxvnkc5vqcdu7mgns2u77qefoixi63vbvnpnqd.onion/*"]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"assets/images/icon16.png","32":"assets/images/icon32.png","48":"assets/images/icon48.png","128":"assets/images/icon128.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"amo","sourceURL":"https://addons.mozilla.org/en-US/firefox/addon/privacy-redirect/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search","method":"amWebAPI"},"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/%7Bb7f9d2cd-d772-4302-8c3f-eb941af36f76%7D.xpi!/","location":"app-profile"},{"id":"{b9db16a4-6edc-47ec-a1f4-b86292ed211d}","syncGUID":"{2159952e-6d3a-4f21-affb-87baa545087c}","version":"7.6.0","type":"extension","loader":null,"updateURL":null,"optionsURL":"content/settings.html?panel=settings","optionsType":3,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1573413674000,"updateDate":1626193129461,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/{b9db16a4-6edc-47ec-a1f4-b86292ed211d}.xpi","skinnable":false,"sourceURI":"https://addons.cdn.mozilla.net/user-media/addons/3006/video_downloadhelper-7.6.0-fx.xpi?filehash=sha256%3Abd51d9c1064e869a20403012e010319b46ef0ab72bb33f22a310dd3aab277a53","releaseNotesURI":"https://addons.mozilla.org/versions/updateInfo/5259716/en-US/","softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["en-US"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["dsb"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["is"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["hsb"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["nb"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["sk"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["ro"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["sl"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["nl"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedState":2,"signedDate":1625144654000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs","contextMenus","nativeMessaging","webRequest","webRequestBlocking","downloads","clipboardWrite","webNavigation","notifications","storage","cookies","menus"],"origins":["","*://*.downloadhelper.net/*"]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"32":"content/images/icon-32.png","40":"content/images/icon-40.png","48":"content/images/icon-48.png","128":"content/images/icon-128.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"amo","method":"amWebAPI"},"recommendationState":{"validNotAfter":1782932654000,"validNotBefore":1625144654000,"states":["recommended"]},"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/%7Bb9db16a4-6edc-47ec-a1f4-b86292ed211d%7D.xpi!/","location":"app-profile"},{"id":"jid1-MnnxcxisBPnSXQ@jetpack","syncGUID":"{f0f2b64d-ce1c-44d4-af9f-71ce9270b90c}","version":"2021.6.8","type":"extension","loader":null,"updateURL":null,"optionsURL":"/skin/options.html","optionsType":3,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Privacy Badger","description":"Privacy Badger automatically learns to block invisible trackers.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1542628050000,"updateDate":1626193129482,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/jid1-MnnxcxisBPnSXQ@jetpack.xpi","skinnable":false,"sourceURI":"https://addons.cdn.mozilla.net/user-media/addons/506646/privacy_badger-2021.6.8-an+fx.xpi?filehash=sha256%3A72579f77035a5146b7332e39a28063c6bb48ca7284d5b1383cab24dca65372a8","releaseNotesURI":"https://addons.mozilla.org/versions/updateInfo/5247789/en-US/","softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Privacy Badger","description":"Privacy Badger automatically learns to block invisible trackers.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["en-US"]},{"name":"Privacy Badger","description":"O Privacy Badger aprende automaticamente a bloquear rastreadores invisíveis.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["pt-PT"]},{"name":"Privacy Badger","description":"Privacy Badger автоматично се научава да блокира невидими преследвачи.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"Privacy Badger","description":"Privacy Badger se automaticky učí blokovat neviditelné sledovací prvky na webových stránkách.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["cs"]},{"name":"Privacy Badger","description":"Privacy Badger lär sig automatiskt att blockera osynliga spårare.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"Privacy Badger","description":"A Privacy Badger automatikusan megtanulja a láthatatlan követők tiltását.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"Privacy Badger","description":"Privacy Badger apprend automatiquement à bloquer les traceurs invisibles.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Privacy Badger","description":"Privacy Badger автоматично навчається блокувати невидимі елементи стеження.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"«غرير الخصوصية»","description":"يتعلم «غرير الخصوصية» تلقائيا أن يحجب المتعقبات الخفية.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["ar"]},{"name":"Privata Melo","description":"Privata Melo aŭtomate lernas bloki nevideblajn spurilojn.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["eo"]},{"name":"Privacy Badger","description":"Privacy Badger는 자동으로 보이지 않는 추적기를 차단하는 법을 학습합니다.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"Privacy Badger","description":"Privacy Badger impara automaticamente a bloccare i tracker invisibili.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"Privacy Badger","description":"El Privacy Badger aprèn automàticament a blocar rastrejadors invisibles.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"Privacy Badger","description":"Privacy Badger lernt automatisch, unsichtbare Tracker zu blocken.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"隐私獾","description":"隐私獾会自动学习去阻止不可见的追踪器。","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"Privacy Badger","description":"Privacy Badger автоматически учится блокировать невидимые трекеры.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"پرایوسی بجر","description":"پرایوسی بجر به صورت اتوماتیک یاد می گیرد تا ردیاب های مخفی را بلاک کند.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["fa"]},{"name":"Privacy Badger","description":"Privacy Badger automatycznie uczy się blokować niewidoczne elementy śledzące.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"Privacy Badger","description":"Το Privacy Badger μαθαίνει αυτόματα να αποκλείει \"αόρατους\" ιχνηλάτες.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"Privacy Badger","description":"Privacy Badger aprende automáticamente a bloquear rastreadores invisibles.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"Privacy Badger","description":"Privacy Badger oppii automaattisesti estämään näkymättömät jäljittimet.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"Privacy Badger","description":"Privacy Badger 會自動學習並阻擋不可見的追蹤器。","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"Privacy Badger","description":"O Privacy Badger aprende automaticamente a bloquear rastreadores invisíveis.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"Privacy Badger","description":"Privacy Badger לומד באופן אוטומטי לחסום עוקבנים בלתי נראים.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["he"]},{"name":"Privacy Badger","description":"Privacy Badger lærer automatisk at blokere usynlige sporinger.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"Privacy Badger","description":"Privacy Badger görünmez takipçileri engellemeyi otomatik olarak öğrenir.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"Privacy Badger","description":"Privacy Badger leert automatisch onzichtbare volgers te blokkeren.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["nl"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"52.0","maxVersion":null}],"targetPlatforms":[],"signedState":2,"signedDate":1623333557000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs","webNavigation","webRequest","webRequestBlocking","storage","cookies","privacy"],"origins":["http://*/*","https://*/*","https://*.facebook.com/*","http://*.facebook.com/*","https://*.messenger.com/*","http://*.messenger.com/*","*://*.facebookcorewwwi.onion/*","https://www.google.com/*","http://www.google.com/*","https://www.google.ad/*","http://www.google.ad/*","https://www.google.ae/*","http://www.google.ae/*","https://www.google.com.af/*","http://www.google.com.af/*","https://www.google.com.ag/*","http://www.google.com.ag/*","https://www.google.com.ai/*","http://www.google.com.ai/*","https://www.google.al/*","http://www.google.al/*","https://www.google.am/*","http://www.google.am/*","https://www.google.co.ao/*","http://www.google.co.ao/*","https://www.google.com.ar/*","http://www.google.com.ar/*","https://www.google.as/*","http://www.google.as/*","https://www.google.at/*","http://www.google.at/*","https://www.google.com.au/*","http://www.google.com.au/*","https://www.google.az/*","http://www.google.az/*","https://www.google.ba/*","http://www.google.ba/*","https://www.google.com.bd/*","http://www.google.com.bd/*","https://www.google.be/*","http://www.google.be/*","https://www.google.bf/*","http://www.google.bf/*","https://www.google.bg/*","http://www.google.bg/*","https://www.google.com.bh/*","http://www.google.com.bh/*","https://www.google.bi/*","http://www.google.bi/*","https://www.google.bj/*","http://www.google.bj/*","https://www.google.com.bn/*","http://www.google.com.bn/*","https://www.google.com.bo/*","http://www.google.com.bo/*","https://www.google.com.br/*","http://www.google.com.br/*","https://www.google.bs/*","http://www.google.bs/*","https://www.google.bt/*","http://www.google.bt/*","https://www.google.co.bw/*","http://www.google.co.bw/*","https://www.google.by/*","http://www.google.by/*","https://www.google.com.bz/*","http://www.google.com.bz/*","https://www.google.ca/*","http://www.google.ca/*","https://www.google.cd/*","http://www.google.cd/*","https://www.google.cf/*","http://www.google.cf/*","https://www.google.cg/*","http://www.google.cg/*","https://www.google.ch/*","http://www.google.ch/*","https://www.google.ci/*","http://www.google.ci/*","https://www.google.co.ck/*","http://www.google.co.ck/*","https://www.google.cl/*","http://www.google.cl/*","https://www.google.cm/*","http://www.google.cm/*","https://www.google.cn/*","http://www.google.cn/*","https://www.google.com.co/*","http://www.google.com.co/*","https://www.google.co.cr/*","http://www.google.co.cr/*","https://www.google.com.cu/*","http://www.google.com.cu/*","https://www.google.cv/*","http://www.google.cv/*","https://www.google.com.cy/*","http://www.google.com.cy/*","https://www.google.cz/*","http://www.google.cz/*","https://www.google.de/*","http://www.google.de/*","https://www.google.dj/*","http://www.google.dj/*","https://www.google.dk/*","http://www.google.dk/*","https://www.google.dm/*","http://www.google.dm/*","https://www.google.com.do/*","http://www.google.com.do/*","https://www.google.dz/*","http://www.google.dz/*","https://www.google.com.ec/*","http://www.google.com.ec/*","https://www.google.ee/*","http://www.google.ee/*","https://www.google.com.eg/*","http://www.google.com.eg/*","https://www.google.es/*","http://www.google.es/*","https://www.google.com.et/*","http://www.google.com.et/*","https://www.google.fi/*","http://www.google.fi/*","https://www.google.com.fj/*","http://www.google.com.fj/*","https://www.google.fm/*","http://www.google.fm/*","https://www.google.fr/*","http://www.google.fr/*","https://www.google.ga/*","http://www.google.ga/*","https://www.google.ge/*","http://www.google.ge/*","https://www.google.gg/*","http://www.google.gg/*","https://www.google.com.gh/*","http://www.google.com.gh/*","https://www.google.com.gi/*","http://www.google.com.gi/*","https://www.google.gl/*","http://www.google.gl/*","https://www.google.gm/*","http://www.google.gm/*","https://www.google.gr/*","http://www.google.gr/*","https://www.google.com.gt/*","http://www.google.com.gt/*","https://www.google.gy/*","http://www.google.gy/*","https://www.google.com.hk/*","http://www.google.com.hk/*","https://www.google.hn/*","http://www.google.hn/*","https://www.google.hr/*","http://www.google.hr/*","https://www.google.ht/*","http://www.google.ht/*","https://www.google.hu/*","http://www.google.hu/*","https://www.google.co.id/*","http://www.google.co.id/*","https://www.google.ie/*","http://www.google.ie/*","https://www.google.co.il/*","http://www.google.co.il/*","https://www.google.im/*","http://www.google.im/*","https://www.google.co.in/*","http://www.google.co.in/*","https://www.google.iq/*","http://www.google.iq/*","https://www.google.is/*","http://www.google.is/*","https://www.google.it/*","http://www.google.it/*","https://www.google.je/*","http://www.google.je/*","https://www.google.com.jm/*","http://www.google.com.jm/*","https://www.google.jo/*","http://www.google.jo/*","https://www.google.co.jp/*","http://www.google.co.jp/*","https://www.google.co.ke/*","http://www.google.co.ke/*","https://www.google.com.kh/*","http://www.google.com.kh/*","https://www.google.ki/*","http://www.google.ki/*","https://www.google.kg/*","http://www.google.kg/*","https://www.google.co.kr/*","http://www.google.co.kr/*","https://www.google.com.kw/*","http://www.google.com.kw/*","https://www.google.kz/*","http://www.google.kz/*","https://www.google.la/*","http://www.google.la/*","https://www.google.com.lb/*","http://www.google.com.lb/*","https://www.google.li/*","http://www.google.li/*","https://www.google.lk/*","http://www.google.lk/*","https://www.google.co.ls/*","http://www.google.co.ls/*","https://www.google.lt/*","http://www.google.lt/*","https://www.google.lu/*","http://www.google.lu/*","https://www.google.lv/*","http://www.google.lv/*","https://www.google.com.ly/*","http://www.google.com.ly/*","https://www.google.co.ma/*","http://www.google.co.ma/*","https://www.google.md/*","http://www.google.md/*","https://www.google.me/*","http://www.google.me/*","https://www.google.mg/*","http://www.google.mg/*","https://www.google.mk/*","http://www.google.mk/*","https://www.google.ml/*","http://www.google.ml/*","https://www.google.com.mm/*","http://www.google.com.mm/*","https://www.google.mn/*","http://www.google.mn/*","https://www.google.ms/*","http://www.google.ms/*","https://www.google.com.mt/*","http://www.google.com.mt/*","https://www.google.mu/*","http://www.google.mu/*","https://www.google.mv/*","http://www.google.mv/*","https://www.google.mw/*","http://www.google.mw/*","https://www.google.com.mx/*","http://www.google.com.mx/*","https://www.google.com.my/*","http://www.google.com.my/*","https://www.google.co.mz/*","http://www.google.co.mz/*","https://www.google.com.na/*","http://www.google.com.na/*","https://www.google.com.ng/*","http://www.google.com.ng/*","https://www.google.com.ni/*","http://www.google.com.ni/*","https://www.google.ne/*","http://www.google.ne/*","https://www.google.nl/*","http://www.google.nl/*","https://www.google.no/*","http://www.google.no/*","https://www.google.com.np/*","http://www.google.com.np/*","https://www.google.nr/*","http://www.google.nr/*","https://www.google.nu/*","http://www.google.nu/*","https://www.google.co.nz/*","http://www.google.co.nz/*","https://www.google.com.om/*","http://www.google.com.om/*","https://www.google.com.pa/*","http://www.google.com.pa/*","https://www.google.com.pe/*","http://www.google.com.pe/*","https://www.google.com.pg/*","http://www.google.com.pg/*","https://www.google.com.ph/*","http://www.google.com.ph/*","https://www.google.com.pk/*","http://www.google.com.pk/*","https://www.google.pl/*","http://www.google.pl/*","https://www.google.pn/*","http://www.google.pn/*","https://www.google.com.pr/*","http://www.google.com.pr/*","https://www.google.ps/*","http://www.google.ps/*","https://www.google.pt/*","http://www.google.pt/*","https://www.google.com.py/*","http://www.google.com.py/*","https://www.google.com.qa/*","http://www.google.com.qa/*","https://www.google.ro/*","http://www.google.ro/*","https://www.google.ru/*","http://www.google.ru/*","https://www.google.rw/*","http://www.google.rw/*","https://www.google.com.sa/*","http://www.google.com.sa/*","https://www.google.com.sb/*","http://www.google.com.sb/*","https://www.google.sc/*","http://www.google.sc/*","https://www.google.se/*","http://www.google.se/*","https://www.google.com.sg/*","http://www.google.com.sg/*","https://www.google.sh/*","http://www.google.sh/*","https://www.google.si/*","http://www.google.si/*","https://www.google.sk/*","http://www.google.sk/*","https://www.google.com.sl/*","http://www.google.com.sl/*","https://www.google.sn/*","http://www.google.sn/*","https://www.google.so/*","http://www.google.so/*","https://www.google.sm/*","http://www.google.sm/*","https://www.google.sr/*","http://www.google.sr/*","https://www.google.st/*","http://www.google.st/*","https://www.google.com.sv/*","http://www.google.com.sv/*","https://www.google.td/*","http://www.google.td/*","https://www.google.tg/*","http://www.google.tg/*","https://www.google.co.th/*","http://www.google.co.th/*","https://www.google.com.tj/*","http://www.google.com.tj/*","https://www.google.tl/*","http://www.google.tl/*","https://www.google.tm/*","http://www.google.tm/*","https://www.google.tn/*","http://www.google.tn/*","https://www.google.to/*","http://www.google.to/*","https://www.google.com.tr/*","http://www.google.com.tr/*","https://www.google.tt/*","http://www.google.tt/*","https://www.google.com.tw/*","http://www.google.com.tw/*","https://www.google.co.tz/*","http://www.google.co.tz/*","https://www.google.com.ua/*","http://www.google.com.ua/*","https://www.google.co.ug/*","http://www.google.co.ug/*","https://www.google.co.uk/*","http://www.google.co.uk/*","https://www.google.com.uy/*","http://www.google.com.uy/*","https://www.google.co.uz/*","http://www.google.co.uz/*","https://www.google.com.vc/*","http://www.google.com.vc/*","https://www.google.co.ve/*","http://www.google.co.ve/*","https://www.google.vg/*","http://www.google.vg/*","https://www.google.co.vi/*","http://www.google.co.vi/*","https://www.google.com.vn/*","http://www.google.com.vn/*","https://www.google.vu/*","http://www.google.vu/*","https://www.google.ws/*","http://www.google.ws/*","https://www.google.rs/*","http://www.google.rs/*","https://www.google.co.za/*","http://www.google.co.za/*","https://www.google.co.zm/*","http://www.google.co.zm/*","https://www.google.co.zw/*","http://www.google.co.zw/*","https://www.google.cat/*","http://www.google.cat/*","https://hangouts.google.com/*","http://hangouts.google.com/*","https://docs.google.com/*","http://docs.google.com/*",""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"icons/badger-16.png","19":"icons/badger-19.png","38":"icons/badger-38.png","48":"icons/badger-48.png","64":"icons/badger-64.png","128":"icons/badger-128.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":null,"recommendationState":{"validNotAfter":1781121557000,"validNotBefore":1623333557000,"states":["recommended","recommended-android"]},"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/jid1-MnnxcxisBPnSXQ@jetpack.xpi!/","location":"app-profile"},{"id":"reset-search-defaults@mozilla.com","syncGUID":"{a086535c-da1d-4d4a-b291-178bbb64a2a4}","version":"2.0.0","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Reset Search Defaults","description":"Ask the user if they would like to use a specified search engine as the default.","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1626193129898,"updateDate":1626193129898,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/features/{ca14a817-0875-4da5-bb2b-ee350585920c}/reset-search-defaults@mozilla.com.xpi","skinnable":false,"sourceURI":"file:///tmp/tmpaddon","releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"81.0","maxVersion":null}],"targetPlatforms":[],"signedState":3,"signedDate":1624465236000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["management"],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":{"source":"system-addon","method":"product-updates"},"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/features/%7Bca14a817-0875-4da5-bb2b-ee350585920c%7D/reset-search-defaults@mozilla.com.xpi!/","location":"app-system-addons"},{"id":"uBlock0@raymondhill.net","syncGUID":"{f70fa12e-f672-41cf-b96c-cfa7eeecb76e}","version":"1.36.2","type":"extension","loader":null,"updateURL":null,"optionsURL":"dashboard.html","optionsType":3,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"uBlock Origin","description":"Finally, an efficient blocker. Easy on CPU and memory.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1542627999000,"updateDate":1626211503294,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/uBlock0@raymondhill.net.xpi","skinnable":false,"sourceURI":"https://addons.cdn.mozilla.net/user-media/addons/607454/ublock_origin-1.36.2-an+fx.xpi?filehash=sha256%3A31f8c2126a3f4e3cfe3ef63550b842a5d4f071ec1c6e5aa377c2f29b11ff1415","releaseNotesURI":"https://addons.mozilla.org/versions/updateInfo/5262085/en-US/","softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"uBlock Origin","description":"Finally, an efficient blocker. Easy on CPU and memory.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"uBlock Origin","description":"Finally, an efficient blocker. Easy on CPU and memory.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["oc"]},{"name":"uBlock Origin","description":"Einlik, in effisjinte adblocker. Brûkt hast gjin prosessorkrêft of ûnthâld.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["fy"]},{"name":"uBlock Origin","description":"Най-накрая, ефективен блокер. Щадящ процесора и паметта.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"uBlock Origin","description":"高効率ブロッカーが遂に登場。CPUとメモリーの負担を抑えます。","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"uBlock Origin","description":"Akhirnya, pemblokir iklan yang efisien. Ringan penggunaan CPU dan memori.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"uBlock Origin","description":"Lõpuks on valminud tõhus blokeerija. Protsessori- ja mälusõbralik.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["et"]},{"name":"uBlock Origin","description":"Finalmente, um bloqueador eficiente. Leve na CPU e memória.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["pt-PT"]},{"name":"uBlock Origin","description":"Behingoz, blokeatzaile eraginkor bat. PUZ eta memorian arina.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["eu"]},{"name":"uBlock Origin","description":"ಕೊನೆಗೂ, ಒಂದು ದಕ್ಷ ನಿರ್ಬಂಧಕ. ಮಿತವಾದ ಸಿಪಿಯೂ ಹಾಗು ಮೆಮೊರಿ ಬಳಕೆ.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["kn"]},{"name":"uBlock Origin","description":"Végre egy hatékony reklám- és követésblokkoló böngészőkhöz, amely kíméletes a processzorral és a memóriával.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"uBlock Origin","description":"Ефективний блокувальник реклами таки з’явився. Не навантажує процесор та пам'ять.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"uBlock Origin","description":"Konečně efektivní blokovač. Nezatěžuje CPU a paměť.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["cs"]},{"name":"uBlock Origin","description":"Un bloqueur de nuisances efficace, qui ménagera votre processeur et votre mémoire vive.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"uBlock Origin","description":"Äntligen en effektiv blockerare. Snäll mot både processor och minne.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"uBlock Origin","description":"Finfine rendimenta reklamoblokilo. Afabla por ĉefprocesoro kaj memoro.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["eo"]},{"name":"uBlock Origin","description":"وأخيراً, مانع اعلانات كفوء. خفيف على المعالج و الذاكرة.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ar"]},{"name":"uBlock Origin","description":"Cuối cùng, đã có một công cụ chặn quảng cáo hiệu quả, tiêu tốn ít CPU và bộ nhớ.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["vi"]},{"name":"uBlock Origin","description":"మొత్తానికి RAM ఇంకా CPU పై తేలికయిన, ఒక సమర్థవంతమైన నిరోధిని.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["te"]},{"name":"uBlock Origin","description":"অবশেষে, একটি দক্ষ বিজ্ঞাপন রোধক। সিপিইউ এবং মেমরি সহায়ক।","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["bn"]},{"name":"uBlock Origin","description":"როგორც იქნა, მძლავრი და შედეგიანი რეკლამების შემზღუდავი. ზოგავს CPU-ს და მეხსიერებას.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ka"]},{"name":"uBlock Origin","description":"Endelig en effektiv blokkeringsutvidelse. Lavt CPU- og minnebruk.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["no"]},{"name":"uBlock Origin","description":"Pagaliau, efektyvus blokatorius, neapkraunantis nei procesoriaus, nei darbinės atminties.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["lt"]},{"name":"uBlock Origin","description":"이 부가 기능은 효율적인 차단기입니다. CPU와 메모리에 주는 부담이 적습니다.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"uBlock Origin","description":"आख़िरकार, क्रोमियम-बेस्ड ब्राउज़रों के लिए एक कुशल अवरोधक। CPU और स्मृति पर आसान।","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["hi"]},{"name":"uBlock Origin","description":"இறுதியாக, ஒரு திறமையான விளம்பரத் தடுப்பான். கணினியின் மையச் செயற்பகுதியின் மேலும் நினைவகத்தின் மேலும் இலகுவானது.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ta"]},{"name":"uBlock Origin","description":"Finalmente, un blocker efficiente. Leggero sulla CPU e sulla memoria.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"uBlock Origin","description":"Axır ki, prosessor və yaddaş yükünü azaldan səmərəli bir əngəlləyici var.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["az"]},{"name":"uBlock Origin","description":"آخر کار، ایک مؤثر اشتہار کو روکنے والا، یہ کم cpu اور میموری لیتا ہے.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ur"]},{"name":"uBlock Origin","description":"มาแล้ว! โปรแกรมบล็อกโฆษณาเบาเบา ไม่กิน ซีพียู หรือ แรม","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["th"]},{"name":"uBlock Origin","description":"Endlich ein effizienter Blocker. Prozessor-freundlich und bescheiden beim Speicherbedarf.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"uBlock Origin","description":"शेवटी, एक कार्यक्षम ब्लॉकर क्रोमियम आधारित ब्राउझरांसाठी. सीपीयू आणि मेमरी वर सोपे जातो.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["mr"]},{"name":"uBlock Origin","description":"Finally, an efficient blocker. Easy on CPU and memory.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["en-GB"]},{"name":"uBlock Origin","description":"Më në fund, një bllokues efikas që nuk e rëndon procesorin dhe memorien.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["sq"]},{"name":"uBlock Origin","description":"Ó fin, un bloqueador eficiente que non chupa toda a memoria e o procesador.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["gl"]},{"name":"uBlock Origin","description":"Konečne efektívny blokovač. Nezaťažuje CPU ani pamäť.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["sk"]},{"name":"uBlock Origin","description":"Тинех Интернет тишкерӳҫӗ валли хӑвӑрт та витӗмлӗ чаркӑч пур.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["cv"]},{"name":"uBlock Origin","description":"Коначно, ефикасан блокатор. Ниски процесорски и меморијски захтеви.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["sr"]},{"name":"uBlock Origin","description":"بالاخره، یک بلاکر کارآمد. کم حجم بر روی پردازنده و حافظه.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["fa"]},{"name":"uBlock Origin","description":"അവസാനം, ഒരു കാര്യക്ഷമമായ ബ്ലോക്കര്‍. ലഘുവായ CPU, memory ഉപയോഗം.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ml"]},{"name":"uBlock Origin","description":"Endelig en effektiv blokkeringsutvidelse. Lavt CPU- og minnebruk.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["nb"]},{"name":"uBlock Origin","description":"Finalment, un blocador eficient que utilitza pocs recursos de memòria i processador.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"uBlock Origin","description":"Наконец-то, быстрый и эффективный блокировщик для браузеров.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"uBlock Origin","description":"Nareszcie skuteczny bloker charakteryzujący się niskim użyciem procesora i pamięci.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"uBlock Origin","description":"Beidzot, efektīvs bloķētājs. Nepārslogo procesoru un atmiņu.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["lv"]},{"name":"uBlock Origin","description":"Վերջապե՛ս, արդյունավետ արգելափակիչ։ Խնայում է մշակիչը և հիշողությունը։","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["hy"]},{"name":"uBlock Origin","description":"Жарнамаларды жақсы өшіретін Addon'дардың бірі. Компьютердің қуатың аз алады.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["kk"]},{"name":"uBlock Origin","description":"Konačno, efikasan bloker. Štedljiv na procesoru i memoriji.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["bs"]},{"name":"uBlock Origin","description":"一款高效的网络请求过滤工具,占用极低的内存和 CPU。","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"uBlock Origin","description":"Por fin, un bloqueador eficiente con uso mínimo de procesador y memoria.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"uBlock Origin","description":"În sfârșit, un blocant eficient. Are un impact mic asupra procesorului și memoriei.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ro"]},{"name":"uBlock Origin","description":"Končno, učinkovita, procesorju in pomnilniku prijazna razširitev za blokiranje oglasov.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["sl"]},{"name":"uBlock Origin","description":"Sa wakas! Isang magaling na blocker para sa Chromium-based browsers. Magaan sa CPU at memory.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["fil"]},{"name":"uBlock Origin","description":"Επιτέλους, ένας αποτελεσματικός blocker. Ελαφρύς για τον επεξεργαστή και τη μνήμη.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"uBlock Origin","description":"終於有套使用不多的 CPU 及記憶體資源的高效率阻擋器。","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"uBlock Origin","description":"Akhirnya, penyekat yang cekap. Tidak membebankan CPU dan memori.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ms"]},{"name":"uBlock Origin","description":"Viimeinkin tehokas ja kevyt mainosten estäjä.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"uBlock Origin","description":"Finalmente, um bloqueador eficiente. Com baixo uso de memória e CPU.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"uBlock Origin","description":"Endelig en effektiv blocker. Lavt CPU- og hukommelsesforbrug.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"uBlock Origin","description":"סוף סוף, חוסם יעיל. קל על המעבד והזיכרון.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["he"]},{"name":"uBlock Origin","description":"Konačno, efikasan blokator. Lak na CPU i memoriji.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["hr"]},{"name":"uBlock Origin","description":"Eindelijk, een efficiënte adblocker. Gebruikt weinig processorkracht en geheugen.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"uBlock Origin","description":"Sonunda, etkili bir engelleyici. İşlemciyi ve belleği yormaz.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["tr"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"57.0","maxVersion":null}],"targetPlatforms":[],"signedState":2,"signedDate":1625588266000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["dns","menus","privacy","storage","tabs","unlimitedStorage","webNavigation","webRequest","webRequestBlocking"],"origins":["","http://*/*","https://*/*","file://*/*","https://easylist.to/*","https://*.fanboy.co.nz/*","https://filterlists.com/*","https://forums.lanik.us/*","https://github.com/*","https://*.github.io/*"]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"img/ublock.svg","32":"img/ublock.svg","48":"img/ublock.svg","64":"img/ublock.svg","96":"img/ublock.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{"webRequest":{"onBeforeRequest":[[{"incognito":null,"tabId":null,"types":null,"urls":["moz-extension://90be17cd-7169-4943-9a04-3cd8bf7fec41/web_accessible_resources/*"],"windowId":null},["blocking"]],[{"incognito":null,"tabId":null,"types":null,"urls":["http://*/*","https://*/*","ws://*/*","wss://*/*"],"windowId":null},["blocking"]]]}}},"hidden":false,"installTelemetryInfo":null,"recommendationState":{"validNotAfter":1783376266000,"validNotBefore":1625588266000,"states":["recommended-android","recommended"]},"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/uBlock0@raymondhill.net.xpi!/","location":"app-profile"}]} \ No newline at end of file diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/jid1-MnnxcxisBPnSXQ@jetpack.xpi b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/jid1-MnnxcxisBPnSXQ@jetpack.xpi index 5b9a4eba..464391d2 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/jid1-MnnxcxisBPnSXQ@jetpack.xpi and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/jid1-MnnxcxisBPnSXQ@jetpack.xpi differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/uBlock0@raymondhill.net.xpi b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/uBlock0@raymondhill.net.xpi index 6ee93a37..ba95fe0d 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/uBlock0@raymondhill.net.xpi and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/uBlock0@raymondhill.net.xpi differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/{b7f9d2cd-d772-4302-8c3f-eb941af36f76}.xpi b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/{b7f9d2cd-d772-4302-8c3f-eb941af36f76}.xpi index 8b11a20f..922627b9 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/{b7f9d2cd-d772-4302-8c3f-eb941af36f76}.xpi and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/{b7f9d2cd-d772-4302-8c3f-eb941af36f76}.xpi differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/{b9db16a4-6edc-47ec-a1f4-b86292ed211d}.xpi b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/{b9db16a4-6edc-47ec-a1f4-b86292ed211d}.xpi index 4eb7a02e..e1b218ae 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/{b9db16a4-6edc-47ec-a1f4-b86292ed211d}.xpi and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/{b9db16a4-6edc-47ec-a1f4-b86292ed211d}.xpi differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/favicons.sqlite b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/favicons.sqlite index 05ca704e..09e86c26 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/favicons.sqlite and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/favicons.sqlite differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/features/{ca14a817-0875-4da5-bb2b-ee350585920c}/reset-search-defaults@mozilla.com.xpi b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/features/{ca14a817-0875-4da5-bb2b-ee350585920c}/reset-search-defaults@mozilla.com.xpi new file mode 100644 index 00000000..0aa7e1aa Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/features/{ca14a817-0875-4da5-bb2b-ee350585920c}/reset-search-defaults@mozilla.com.xpi differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/formhistory.sqlite b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/formhistory.sqlite index 7efae9c4..7ac6bc30 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/formhistory.sqlite and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/formhistory.sqlite differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/permissions.sqlite b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/permissions.sqlite index 73347b6f..963ce465 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/permissions.sqlite and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/permissions.sqlite differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/places.sqlite b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/places.sqlite index 88e726d0..03373a47 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/places.sqlite and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/places.sqlite differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/prefs.js b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/prefs.js index 0b5bc14c..de6f3546 100644 --- a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/prefs.js +++ b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/prefs.js @@ -21,16 +21,16 @@ user_pref("app.normandy.startupRolloutPrefs.network.http.http3.enabled", true); user_pref("app.normandy.startupRolloutPrefs.services.sync.bookmarks.buffer.enabled", true); user_pref("app.normandy.user_id", "f6151ad0-fece-4d81-9d5c-67449843ccf0"); user_pref("app.shield.optoutstudies.enabled", false); -user_pref("app.update.lastUpdateTime.addon-background-update-timer", 1623205116); +user_pref("app.update.lastUpdateTime.addon-background-update-timer", 1626193127); user_pref("app.update.lastUpdateTime.blocklist-background-update-timer", 1588540518); -user_pref("app.update.lastUpdateTime.browser-cleanup-thumbnails", 1623247836); -user_pref("app.update.lastUpdateTime.recipe-client-addon-run", 1623248076); -user_pref("app.update.lastUpdateTime.region-update-timer", 1623205356); +user_pref("app.update.lastUpdateTime.browser-cleanup-thumbnails", 1626211533); +user_pref("app.update.lastUpdateTime.recipe-client-addon-run", 1626192534); +user_pref("app.update.lastUpdateTime.region-update-timer", 1626193367); user_pref("app.update.lastUpdateTime.rs-experiment-loader-timer", 1608565076); -user_pref("app.update.lastUpdateTime.search-engine-update-timer", 1623247956); -user_pref("app.update.lastUpdateTime.services-settings-poll-changes", 1623204996); +user_pref("app.update.lastUpdateTime.search-engine-update-timer", 1626192748); +user_pref("app.update.lastUpdateTime.services-settings-poll-changes", 1626193007); user_pref("app.update.lastUpdateTime.telemetry_modules_ping", 1573002408); -user_pref("app.update.lastUpdateTime.xpi-signature-verification", 1623205236); +user_pref("app.update.lastUpdateTime.xpi-signature-verification", 1626193247); user_pref("browser.bookmarks.defaultLocation", "unfiled"); user_pref("browser.bookmarks.restore_default_bookmarks", false); user_pref("browser.cache.disk.amount_written", 1754406); @@ -53,6 +53,10 @@ user_pref("browser.messaging-system.whatsNewPanel.enabled", false); user_pref("browser.migration.version", 109); user_pref("browser.newtab.extensionControlled", true); user_pref("browser.newtab.privateAllowed", true); +user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.addons", false); +user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features", false); +user_pref("browser.newtabpage.activity-stream.feeds.section.topstories", false); +user_pref("browser.newtabpage.activity-stream.feeds.topsites", false); user_pref("browser.newtabpage.activity-stream.impressionId", "{7b66b9fa-c166-4db7-9cd2-1f61e10923fd}"); user_pref("browser.newtabpage.activity-stream.improvesearch.topSiteSearchShortcuts.havePinned", "google,amazon"); user_pref("browser.newtabpage.activity-stream.migrationExpired", true); @@ -63,25 +67,25 @@ user_pref("browser.newtabpage.storageVersion", 1); user_pref("browser.pageActions.persistedActions", "{\"version\":1,\"ids\":[\"bookmark\"],\"idsInUrlbar\":[\"bookmark\"],\"idsInUrlbarPreProton\":[\"bookmark\"]}"); user_pref("browser.pagethumbnails.storage_version", 3); user_pref("browser.proton.toolbar.version", 3); -user_pref("browser.region.update.updated", 1623205357); +user_pref("browser.region.update.updated", 1626193368); user_pref("browser.rights.3.shown", true); -user_pref("browser.safebrowsing.provider.google4.lastupdatetime", "1623247818068"); -user_pref("browser.safebrowsing.provider.google4.nextupdatetime", "1623249639068"); -user_pref("browser.safebrowsing.provider.mozilla.lastupdatetime", "1623247820209"); -user_pref("browser.safebrowsing.provider.mozilla.nextupdatetime", "1623269420209"); +user_pref("browser.safebrowsing.provider.google4.lastupdatetime", "1626211508461"); +user_pref("browser.safebrowsing.provider.google4.nextupdatetime", "1626213287461"); +user_pref("browser.safebrowsing.provider.mozilla.lastupdatetime", "1626192543217"); +user_pref("browser.safebrowsing.provider.mozilla.nextupdatetime", "1626214143217"); user_pref("browser.search.region", "GB"); -user_pref("browser.sessionstore.upgradeBackup.latestBuildID", "20210531160138"); +user_pref("browser.sessionstore.upgradeBackup.latestBuildID", "20210623174607"); user_pref("browser.shell.checkDefaultBrowser", true); user_pref("browser.shell.didSkipDefaultBrowserCheckOnFirstRun", true); -user_pref("browser.shell.mostRecentDateSetAsDefault", "1623248212"); +user_pref("browser.shell.mostRecentDateSetAsDefault", "1626211505"); user_pref("browser.slowStartup.averageTime", 1565); user_pref("browser.slowStartup.samples", 1); user_pref("browser.startup.homepage", "moz-extension://f393b4c4-359a-4d1e-b377-fd4b41112e16/index.html"); -user_pref("browser.startup.homepage_override.buildID", "20210531160138"); +user_pref("browser.startup.homepage_override.buildID", "20210623174607"); user_pref("browser.startup.homepage_override.extensionControlled", true); -user_pref("browser.startup.homepage_override.mstone", "89.0"); +user_pref("browser.startup.homepage_override.mstone", "89.0.2"); user_pref("browser.startup.homepage_override.privateAllowed", true); -user_pref("browser.startup.lastColdStartupCheck", 1623248211); +user_pref("browser.startup.lastColdStartupCheck", 1626211504); user_pref("browser.startup.page", 3); user_pref("browser.tabs.drawInTitlebar", false); user_pref("browser.tabs.extraDragSpace", true); @@ -104,7 +108,7 @@ user_pref("devtools.toolsidebar-width.inspector.splitsidebar", 350); user_pref("devtools.webextensions.https-everywhere@eff.org.enabled", true); user_pref("distribution.Manjaro.bookmarksProcessed", true); user_pref("distribution.archlinux.bookmarksProcessed", true); -user_pref("distribution.iniFile.exists.appversion", "89.0"); +user_pref("distribution.iniFile.exists.appversion", "89.0.2"); user_pref("distribution.iniFile.exists.value", true); user_pref("distribution.manjaro.bookmarksProcessed", true); user_pref("doh-rollout.balrog-migration-done", true); @@ -112,7 +116,7 @@ user_pref("doh-rollout.doneFirstRun", true); user_pref("doh-rollout.doorhanger-decision", "UIOk"); user_pref("doh-rollout.mode", 2); user_pref("doh-rollout.self-enabled", true); -user_pref("dom.push.userAgentID", "3dbc7bc986c9493cb7eea97954991b15"); +user_pref("dom.push.userAgentID", "ce13d9558dac4cab8dff17b5d4505b45"); user_pref("dom.security.https_only_mode", true); user_pref("dom.security.https_only_mode_ever_enabled", true); user_pref("extensions.activeThemeID", "default-theme@mozilla.org"); @@ -120,20 +124,21 @@ user_pref("extensions.blocklist.lastModified", "Sat, 09 Nov 2019 17:49:50 GMT"); user_pref("extensions.blocklist.pingCountTotal", 34); user_pref("extensions.blocklist.pingCountVersion", -1); user_pref("extensions.databaseSchema", 33); -user_pref("extensions.getAddons.cache.lastUpdate", 1623205117); +user_pref("extensions.getAddons.cache.lastUpdate", 1626193128); user_pref("extensions.getAddons.databaseSchema", 6); user_pref("extensions.htmlaboutaddons.recommendations.enabled", false); user_pref("extensions.incognito.migrated", true); -user_pref("extensions.lastAppBuildId", "20210531160138"); -user_pref("extensions.lastAppVersion", "89.0"); -user_pref("extensions.lastPlatformVersion", "89.0"); +user_pref("extensions.lastAppBuildId", "20210623174607"); +user_pref("extensions.lastAppVersion", "89.0.2"); +user_pref("extensions.lastPlatformVersion", "89.0.2"); user_pref("extensions.pendingOperations", false); user_pref("extensions.pictureinpicture.enable_picture_in_picture_overrides", true); user_pref("extensions.pocket.enabled", false); user_pref("extensions.pocket.settings.test.panelSignUp", "control"); user_pref("extensions.reset_default_search.runonce.1", true); -user_pref("extensions.reset_default_search.runonce.3", false); -user_pref("extensions.systemAddonSet", "{\"schema\":1,\"addons\":{}}"); +user_pref("extensions.reset_default_search.runonce.3", true); +user_pref("extensions.reset_default_search.runonce.reason", "previousRun"); +user_pref("extensions.systemAddonSet", "{\"schema\":1,\"directory\":\"{ca14a817-0875-4da5-bb2b-ee350585920c}\",\"addons\":{\"reset-search-defaults@mozilla.com\":{\"version\":\"2.0.0\"}}}"); user_pref("extensions.ui.dictionary.hidden", true); user_pref("extensions.ui.extension.hidden", false); user_pref("extensions.ui.lastCategory", "addons://list/extension"); @@ -165,15 +170,15 @@ user_pref("gfx.blacklist.layers.opengl", 4); user_pref("gfx.blacklist.layers.opengl.failureid", "FEATURE_FAILURE_SOFTWARE_GL"); user_pref("identity.fxaccounts.enabled", false); user_pref("identity.fxaccounts.toolbar.accessed", true); -user_pref("idle.lastDailyNotification", 1623204767); +user_pref("idle.lastDailyNotification", 1626193260); user_pref("lightweightThemes.usedThemes", "[]"); user_pref("media.benchmark.vp9.fps", 102); user_pref("media.benchmark.vp9.versioncheck", 5); user_pref("media.gmp-gmpopenh264.abi", "x86_64-gcc3"); user_pref("media.gmp-gmpopenh264.lastUpdate", 1572996640); user_pref("media.gmp-gmpopenh264.version", "1.8.1.1"); -user_pref("media.gmp-manager.buildID", "20210531160138"); -user_pref("media.gmp-manager.lastCheck", 1623204706); +user_pref("media.gmp-manager.buildID", "20210623174607"); +user_pref("media.gmp-manager.lastCheck", 1626193195); user_pref("media.gmp.storage.version.observed", 1); user_pref("network.cookie.cookieBehavior", 5); user_pref("network.dns.disablePrefetch", true); @@ -186,60 +191,60 @@ user_pref("pdfjs.enabledCache.state", true); user_pref("pdfjs.migrationVersion", 2); user_pref("pdfjs.previousHandler.alwaysAskBeforeHandling", true); user_pref("pdfjs.previousHandler.preferredAction", 4); -user_pref("places.database.lastMaintenance", 1623204767); +user_pref("places.database.lastMaintenance", 1626193261); user_pref("places.history.expiration.transient_current_max_pages", 112348); user_pref("plugin.disable_full_page_plugin_for_types", "application/pdf"); user_pref("privacy.annotate_channels.strict_list.enabled", true); user_pref("privacy.cpd.offlineApps", true); user_pref("privacy.cpd.siteSettings", true); user_pref("privacy.purge_trackers.date_in_cookie_database", "0"); -user_pref("privacy.purge_trackers.last_purge", "1623204767015"); +user_pref("privacy.purge_trackers.last_purge", "1626193260882"); user_pref("privacy.sanitize.pending", "[]"); user_pref("privacy.sanitize.timeSpan", 0); user_pref("privacy.trackingprotection.enabled", true); user_pref("privacy.trackingprotection.socialtracking.enabled", true); -user_pref("security.remote_settings.crlite_filters.checked", 1623229525); -user_pref("security.remote_settings.intermediates.checked", 1623207911); +user_pref("security.remote_settings.crlite_filters.checked", 1626193581); +user_pref("security.remote_settings.intermediates.checked", 1626193581); user_pref("security.sandbox.content.tempDirSuffix", "62ec57d4-3516-41bf-957e-19cd307d5b61"); user_pref("security.sandbox.plugin.tempDirSuffix", "851284ee-3855-4de7-86af-976adc3a2c11"); -user_pref("services.blocklist.addons-mlbf.checked", 1623204996); +user_pref("services.blocklist.addons-mlbf.checked", 1626211506); user_pref("services.blocklist.addons.checked", 1598664411); -user_pref("services.blocklist.gfx.checked", 1623204996); +user_pref("services.blocklist.gfx.checked", 1626211506); user_pref("services.blocklist.onecrl.checked", 1565793602); -user_pref("services.blocklist.pinning.checked", 1623204996); +user_pref("services.blocklist.pinning.checked", 1626193581); user_pref("services.blocklist.plugins.checked", 1618001769); user_pref("services.settings.clock_skew_seconds", 0); -user_pref("services.settings.last_etag", "\"1623229070533\""); -user_pref("services.settings.last_update_seconds", 1623229525); -user_pref("services.settings.main.anti-tracking-url-decoration.last_check", 1623204996); -user_pref("services.settings.main.cfr-fxa.last_check", 1623204996); -user_pref("services.settings.main.cfr.last_check", 1623204996); -user_pref("services.settings.main.fxmonitor-breaches.last_check", 1623204996); -user_pref("services.settings.main.hijack-blocklists.last_check", 1623204996); -user_pref("services.settings.main.language-dictionaries.last_check", 1623204996); -user_pref("services.settings.main.message-groups.last_check", 1623204996); +user_pref("services.settings.last_etag", "\"1626209888341\""); +user_pref("services.settings.last_update_seconds", 1626211506); +user_pref("services.settings.main.anti-tracking-url-decoration.last_check", 1626211506); +user_pref("services.settings.main.cfr-fxa.last_check", 1626211506); +user_pref("services.settings.main.cfr.last_check", 1626211506); +user_pref("services.settings.main.fxmonitor-breaches.last_check", 1626211506); +user_pref("services.settings.main.hijack-blocklists.last_check", 1626211506); +user_pref("services.settings.main.language-dictionaries.last_check", 1626211506); +user_pref("services.settings.main.message-groups.last_check", 1626211506); user_pref("services.settings.main.messaging-experiments.last_check", 1604995344); -user_pref("services.settings.main.nimbus-desktop-experiments.last_check", 1623204996); -user_pref("services.settings.main.normandy-recipes-capabilities.last_check", 1623204996); +user_pref("services.settings.main.nimbus-desktop-experiments.last_check", 1626211506); +user_pref("services.settings.main.normandy-recipes-capabilities.last_check", 1626211506); user_pref("services.settings.main.normandy-recipes.last_check", 1573409021); user_pref("services.settings.main.onboarding.last_check", 1565793602); -user_pref("services.settings.main.partitioning-exempt-urls.last_check", 1623204996); -user_pref("services.settings.main.password-recipes.last_check", 1623204996); -user_pref("services.settings.main.personality-provider-models.last_check", 1623204996); -user_pref("services.settings.main.personality-provider-recipe.last_check", 1623204996); -user_pref("services.settings.main.pioneer-study-addons-v1.last_check", 1623204996); -user_pref("services.settings.main.pioneer-study-addons.last_check", 1623204996); -user_pref("services.settings.main.public-suffix-list.last_check", 1623204996); -user_pref("services.settings.main.search-config.last_check", 1623204996); -user_pref("services.settings.main.search-default-override-allowlist.last_check", 1623204996); -user_pref("services.settings.main.search-telemetry.last_check", 1623204996); -user_pref("services.settings.main.sites-classification.last_check", 1623204996); -user_pref("services.settings.main.tippytop.last_check", 1623204996); -user_pref("services.settings.main.top-sites.last_check", 1623204996); -user_pref("services.settings.main.url-classifier-skip-urls.last_check", 1623204996); -user_pref("services.settings.main.websites-with-shared-credential-backends.last_check", 1623204996); -user_pref("services.settings.main.whats-new-panel.last_check", 1623204996); -user_pref("services.settings.security.onecrl.checked", 1623204996); +user_pref("services.settings.main.partitioning-exempt-urls.last_check", 1626211506); +user_pref("services.settings.main.password-recipes.last_check", 1626211506); +user_pref("services.settings.main.personality-provider-models.last_check", 1626211506); +user_pref("services.settings.main.personality-provider-recipe.last_check", 1626211506); +user_pref("services.settings.main.pioneer-study-addons-v1.last_check", 1626211506); +user_pref("services.settings.main.pioneer-study-addons.last_check", 1626211506); +user_pref("services.settings.main.public-suffix-list.last_check", 1626211506); +user_pref("services.settings.main.search-config.last_check", 1626211506); +user_pref("services.settings.main.search-default-override-allowlist.last_check", 1626211506); +user_pref("services.settings.main.search-telemetry.last_check", 1626211506); +user_pref("services.settings.main.sites-classification.last_check", 1626211506); +user_pref("services.settings.main.tippytop.last_check", 1626211506); +user_pref("services.settings.main.top-sites.last_check", 1626211506); +user_pref("services.settings.main.url-classifier-skip-urls.last_check", 1626211506); +user_pref("services.settings.main.websites-with-shared-credential-backends.last_check", 1626211506); +user_pref("services.settings.main.whats-new-panel.last_check", 1626211506); +user_pref("services.settings.security.onecrl.checked", 1626193581); user_pref("services.sync.clients.lastSync", "0"); user_pref("services.sync.declinedEngines", ""); user_pref("services.sync.globalScore", 0); @@ -248,8 +253,8 @@ user_pref("services.sync.tabs.lastSync", "0"); user_pref("signon.importedFromSqlite", true); user_pref("signon.usage.hasEntry", false); user_pref("storage.vacuum.last.index", 0); -user_pref("storage.vacuum.last.places.sqlite", 1623204767); -user_pref("toolkit.startup.last_success", 1623248209); +user_pref("storage.vacuum.last.places.sqlite", 1626193260); +user_pref("toolkit.startup.last_success", 1626211502); user_pref("toolkit.telemetry.archive.enabled", false); user_pref("toolkit.telemetry.bhrPing.enabled", false); user_pref("toolkit.telemetry.cachedClientID", "c0ffeec0-ffee-c0ff-eec0-ffeec0ffeec0"); diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/protections.sqlite b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/protections.sqlite index 103a7756..8f8a6868 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/protections.sqlite and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/protections.sqlite differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/search.json.mozlz4 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/search.json.mozlz4 index 68d67f8e..3531754f 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/search.json.mozlz4 and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/search.json.mozlz4 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/security_state/data.safe.bin b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/security_state/data.safe.bin index 2f8883b2..d66d9641 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/security_state/data.safe.bin and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/security_state/data.safe.bin differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/sessionstore.jsonlz4 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/sessionstore.jsonlz4 index 28e62b3f..d83cd698 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/sessionstore.jsonlz4 and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/sessionstore.jsonlz4 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage-sync-v2.sqlite-shm b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage-sync-v2.sqlite-shm index a5edf97d..34e47dad 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage-sync-v2.sqlite-shm and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage-sync-v2.sqlite-shm differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage-sync-v2.sqlite-wal b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage-sync-v2.sqlite-wal index aa68d29b..687ffa2b 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage-sync-v2.sqlite-wal and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage-sync-v2.sqlite-wal differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage.sqlite b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage.sqlite index a275772b..fd2b694b 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage.sqlite and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage.sqlite differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++256c7ceb-2fd8-4e47-bdc3-cb06c28a2511^userContextId=4294967295/.metadata-v2 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++256c7ceb-2fd8-4e47-bdc3-cb06c28a2511^userContextId=4294967295/.metadata-v2 index d4f32b46..e2ca0ebd 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++256c7ceb-2fd8-4e47-bdc3-cb06c28a2511^userContextId=4294967295/.metadata-v2 and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++256c7ceb-2fd8-4e47-bdc3-cb06c28a2511^userContextId=4294967295/.metadata-v2 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++256c7ceb-2fd8-4e47-bdc3-cb06c28a2511^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++256c7ceb-2fd8-4e47-bdc3-cb06c28a2511^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite index e8301f70..025f142e 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++256c7ceb-2fd8-4e47-bdc3-cb06c28a2511^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++256c7ceb-2fd8-4e47-bdc3-cb06c28a2511^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++26d6ad01-a771-4b46-9e35-342122037141^userContextId=4294967295/.metadata-v2 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++26d6ad01-a771-4b46-9e35-342122037141^userContextId=4294967295/.metadata-v2 index 97781959..5b6aae17 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++26d6ad01-a771-4b46-9e35-342122037141^userContextId=4294967295/.metadata-v2 and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++26d6ad01-a771-4b46-9e35-342122037141^userContextId=4294967295/.metadata-v2 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++5fa9f4d9-b1b6-436a-976d-16c0d1f6a207^userContextId=4294967295/.metadata-v2 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++5fa9f4d9-b1b6-436a-976d-16c0d1f6a207^userContextId=4294967295/.metadata-v2 index 2b78bed8..a1ece752 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++5fa9f4d9-b1b6-436a-976d-16c0d1f6a207^userContextId=4294967295/.metadata-v2 and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++5fa9f4d9-b1b6-436a-976d-16c0d1f6a207^userContextId=4294967295/.metadata-v2 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/.metadata-v2 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/.metadata-v2 index 3382b6bf..123e5b50 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/.metadata-v2 and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/.metadata-v2 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/806 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/806 deleted file mode 100644 index acd1c987..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/806 and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/807 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/807 deleted file mode 100644 index d5641e87..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/807 and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/808 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/808 deleted file mode 100644 index 33f418fd..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/808 and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/809 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/809 deleted file mode 100644 index 75ff5a0f..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/809 and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/811 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/811 deleted file mode 100644 index d4a61647..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/811 and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/812 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/812 deleted file mode 100644 index 0d6581c3..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/812 and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/813 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/813 deleted file mode 100644 index fa01e6f8..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/813 and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/816 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/816 deleted file mode 100644 index cfa3e2e8..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/816 and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/817 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/817 deleted file mode 100644 index 7bc6cc68..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/817 and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/818 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/818 deleted file mode 100644 index 9d2eb1a6..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/818 and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/819 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/819 deleted file mode 100644 index 1a52be6b..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/819 and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/820 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/820 deleted file mode 100644 index 750d3ee7..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/820 and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/821 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/821 deleted file mode 100644 index 03bd580d..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/821 and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/822 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/822 deleted file mode 100644 index 1e126501..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/822 and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/823 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/823 deleted file mode 100644 index 9acc3a5c..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/823 and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/824 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/824 deleted file mode 100644 index 44d58a5a..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/824 and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/825 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/825 deleted file mode 100644 index 8e6e61c4..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/825 and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/826 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/826 deleted file mode 100644 index 45e2ab70..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/826 and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/836 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/836 deleted file mode 100644 index 3013d6ea..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/836 and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/837 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/837 deleted file mode 100644 index 3c58966a..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/837 and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/838 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/838 deleted file mode 100644 index d693c85c..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/838 and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/839 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/839 deleted file mode 100644 index 9f23ea43..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/839 and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/840 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/840 deleted file mode 100644 index 160b9108..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/840 and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/841 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/841 deleted file mode 100644 index f3d83858..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/841 and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/842 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/842 deleted file mode 100644 index 2f26adaf..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/842 and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/843 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/843 deleted file mode 100644 index 0540c6b2..00000000 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/843 and /dev/null differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/844 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/844 new file mode 100644 index 00000000..719e92e3 Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/844 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/845 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/845 new file mode 100644 index 00000000..26f122e2 Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/845 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/846 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/846 new file mode 100644 index 00000000..0da30d5a Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/846 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/847 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/847 new file mode 100644 index 00000000..d0fced3e Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/847 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/810 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/848 similarity index 66% rename from tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/810 rename to tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/848 index 2d912067..e2dd12c9 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/810 and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/848 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/849 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/849 new file mode 100644 index 00000000..6dd10a32 Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/849 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/850 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/850 new file mode 100644 index 00000000..557f5e7a Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/850 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/851 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/851 new file mode 100644 index 00000000..576b4735 Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/851 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/814 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/852 similarity index 100% rename from tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/814 rename to tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/852 diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/815 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/853 similarity index 100% rename from tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/815 rename to tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/853 diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/854 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/854 new file mode 100644 index 00000000..b2670af6 Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/854 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/855 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/855 new file mode 100644 index 00000000..48903d83 Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/855 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/856 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/856 new file mode 100644 index 00000000..44351286 Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/856 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/857 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/857 new file mode 100644 index 00000000..9c81288d Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/857 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/858 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/858 new file mode 100644 index 00000000..6275d071 Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/858 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/859 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/859 new file mode 100644 index 00000000..4e0765dc Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/859 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/860 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/860 new file mode 100644 index 00000000..5ab06ad6 Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/860 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/861 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/861 new file mode 100644 index 00000000..922fd760 Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/861 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/862 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/862 new file mode 100644 index 00000000..7ddc5a74 Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/862 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/863 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/863 new file mode 100644 index 00000000..54af25b3 Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/863 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/864 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/864 new file mode 100644 index 00000000..72aafd51 Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/864 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/827 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/865 similarity index 100% rename from tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/827 rename to tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/865 diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/828 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/866 similarity index 100% rename from tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/828 rename to tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/866 diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/867 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/867 new file mode 100644 index 00000000..dd073e9e Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/867 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/868 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/868 new file mode 100644 index 00000000..e047f1ab Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/868 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/869 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/869 new file mode 100644 index 00000000..eea30e9c Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/869 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/870 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/870 new file mode 100644 index 00000000..bb780f86 Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/870 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/871 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/871 new file mode 100644 index 00000000..917aa330 Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/871 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/872 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/872 new file mode 100644 index 00000000..43953118 Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/872 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/873 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/873 new file mode 100644 index 00000000..c6915e37 Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/873 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/874 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/874 new file mode 100644 index 00000000..f9bf8158 Binary files /dev/null and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/874 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.sqlite b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.sqlite index 7b6d20c4..1bc76c71 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.sqlite and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.sqlite differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41^userContextId=4294967295/.metadata-v2 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41^userContextId=4294967295/.metadata-v2 index 7c2d8496..5a7e7fe1 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41^userContextId=4294967295/.metadata-v2 and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41^userContextId=4294967295/.metadata-v2 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite index 531c1ef0..5276f73e 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++ac01c99c-ee6d-49f3-bbce-5ef76b0c7c04^userContextId=4294967295/.metadata-v2 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++ac01c99c-ee6d-49f3-bbce-5ef76b0c7c04^userContextId=4294967295/.metadata-v2 index 7eb34018..108f9c56 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++ac01c99c-ee6d-49f3-bbce-5ef76b0c7c04^userContextId=4294967295/.metadata-v2 and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++ac01c99c-ee6d-49f3-bbce-5ef76b0c7c04^userContextId=4294967295/.metadata-v2 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++ac01c99c-ee6d-49f3-bbce-5ef76b0c7c04^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++ac01c99c-ee6d-49f3-bbce-5ef76b0c7c04^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite index b07427c1..2486ec14 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++ac01c99c-ee6d-49f3-bbce-5ef76b0c7c04^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++ac01c99c-ee6d-49f3-bbce-5ef76b0c7c04^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++d439fe79-e9bd-449b-b9ec-cc2b271f80c0^userContextId=4294967295/.metadata-v2 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++d439fe79-e9bd-449b-b9ec-cc2b271f80c0^userContextId=4294967295/.metadata-v2 index 405c58b2..966f6794 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++d439fe79-e9bd-449b-b9ec-cc2b271f80c0^userContextId=4294967295/.metadata-v2 and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++d439fe79-e9bd-449b-b9ec-cc2b271f80c0^userContextId=4294967295/.metadata-v2 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++d439fe79-e9bd-449b-b9ec-cc2b271f80c0^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++d439fe79-e9bd-449b-b9ec-cc2b271f80c0^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite index 2bfef7d2..efe5770f 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++d439fe79-e9bd-449b-b9ec-cc2b271f80c0^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++d439fe79-e9bd-449b-b9ec-cc2b271f80c0^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++dbb00a92-98b5-481a-8acc-56821f5c1539^userContextId=4294967295/.metadata-v2 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++dbb00a92-98b5-481a-8acc-56821f5c1539^userContextId=4294967295/.metadata-v2 index a06621ad..a08a817c 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++dbb00a92-98b5-481a-8acc-56821f5c1539^userContextId=4294967295/.metadata-v2 and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++dbb00a92-98b5-481a-8acc-56821f5c1539^userContextId=4294967295/.metadata-v2 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++f393b4c4-359a-4d1e-b377-fd4b41112e16^userContextId=4294967295/.metadata-v2 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++f393b4c4-359a-4d1e-b377-fd4b41112e16^userContextId=4294967295/.metadata-v2 index a675b2a9..425d24ce 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++f393b4c4-359a-4d1e-b377-fd4b41112e16^userContextId=4294967295/.metadata-v2 and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++f393b4c4-359a-4d1e-b377-fd4b41112e16^userContextId=4294967295/.metadata-v2 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/1059394878bslnoicgkullipsFt2s%.sqlite b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/1059394878bslnoicgkullipsFt2s%.sqlite index 008b40c6..44839327 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/1059394878bslnoicgkullipsFt2s%.sqlite and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/1059394878bslnoicgkullipsFt2s%.sqlite differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/1657114595AmcateirvtiSty.sqlite b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/1657114595AmcateirvtiSty.sqlite index c72f81e4..c1b40e79 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/1657114595AmcateirvtiSty.sqlite and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/1657114595AmcateirvtiSty.sqlite differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/1725441852bxlfogcFk2l%isst.sqlite b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/1725441852bxlfogcFk2l%isst.sqlite index fbd664fd..c3a2db43 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/1725441852bxlfogcFk2l%isst.sqlite and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/1725441852bxlfogcFk2l%isst.sqlite differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/3345959086bslnoocdkdlaiFs2t%s.sqlite b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/3345959086bslnoocdkdlaiFs2t%s.sqlite index c5b8f5db..879136cf 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/3345959086bslnoocdkdlaiFs2t%s.sqlite and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/3345959086bslnoocdkdlaiFs2t%s.sqlite differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/3870112724rsegmnoittet-es.sqlite b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/3870112724rsegmnoittet-es.sqlite index e8fb4178..9af3a92a 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/3870112724rsegmnoittet-es.sqlite and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/3870112724rsegmnoittet-es.sqlite differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/727688008bsleotcakcliifsittsr%.sqlite b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/727688008bsleotcakcliifsittsr%.sqlite index 19fb0261..8607a2b3 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/727688008bsleotcakcliifsittsr%.sqlite and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/727688008bsleotcakcliifsittsr%.sqlite differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/webappsstore.sqlite b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/webappsstore.sqlite index f1e8ea65..04c717ca 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/webappsstore.sqlite and b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/webappsstore.sqlite differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/xulstore.json b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/xulstore.json index 36dd1ebc..bbdb534a 100644 --- a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/xulstore.json +++ b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/xulstore.json @@ -1 +1 @@ -{"chrome://browser/content/browser.xhtml":{"main-window":{"screenX":"236","screenY":"60","width":"1599","height":"891","sizemode":"normal"},"sidebar-box":{"sidebarcommand":"viewBookmarksSidebar","width":""},"sidebar-title":{"value":"Bookmarks"}},"chrome://browser/content/places/places.xhtml":{"placesContentTags":{"ordinal":"3"},"placesContentUrl":{"ordinal":"5"},"placesContentDate":{"ordinal":"7","sortDirection":"descending"},"placesContentVisitCount":{"ordinal":"9"},"placesContentDateAdded":{"ordinal":"11"},"placesContentLastModified":{"ordinal":"13"},"places":{"screenX":"605","screenY":"267","width":"700","height":"500","sizemode":"normal"}},"chrome://browser/content/sanitize.xhtml":{"SanitizeDialog":{"screenX":"527","screenY":"218"}},"chrome://mozapps/content/downloads/unknownContentType.xhtml":{"unknownContentTypeWindow":{"screenX":"527","screenY":"254"}}} \ No newline at end of file +{"chrome://browser/content/browser.xhtml":{"main-window":{"screenX":"198","screenY":"89","width":"1459","height":"891","sizemode":"normal"},"sidebar-box":{"sidebarcommand":"viewBookmarksSidebar","width":""},"sidebar-title":{"value":"Bookmarks"}},"chrome://browser/content/places/places.xhtml":{"placesContentTags":{"ordinal":"3"},"placesContentUrl":{"ordinal":"5"},"placesContentDate":{"ordinal":"7","sortDirection":"descending"},"placesContentVisitCount":{"ordinal":"9"},"placesContentDateAdded":{"ordinal":"11"},"placesContentLastModified":{"ordinal":"13"},"places":{"screenX":"636","screenY":"291","width":"700","height":"500","sizemode":"normal"}},"chrome://browser/content/sanitize.xhtml":{"SanitizeDialog":{"screenX":"457","screenY":"218"}},"chrome://mozapps/content/downloads/unknownContentType.xhtml":{"unknownContentTypeWindow":{"screenX":"527","screenY":"254"}}} \ No newline at end of file diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/Crash Reports/InstallTime20210623174607 b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/Crash Reports/InstallTime20210623174607 new file mode 100644 index 00000000..ba7631a0 --- /dev/null +++ b/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/Crash Reports/InstallTime20210623174607 @@ -0,0 +1 @@ +1626192524 \ No newline at end of file diff --git a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/extension.js b/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/extension.js deleted file mode 100644 index d8f6bc5f..00000000 --- a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/extension.js +++ /dev/null @@ -1,287 +0,0 @@ -/* - * Copyright (C) 2012 Thiago Bellini - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - * - * Some parts of this code were forked from message-notifier: - * https://extensions.gnome.org/extension/150/message-notifier/ - * The idea of setting the menu red were inspired by pidgin-persistent-notification: - * https://extensions.gnome.org/extension/170/pidgin-peristent-notification - * - */ - -const { Clutter, St } = imports.gi; -const Lang = imports.lang; -const Mainloop = imports.mainloop; -const Main = imports.ui.main; -const MessageTray = imports.ui.messageTray; -const GnomeSession = imports.misc.gnomeSession; - -const ExtensionUtils = imports.misc.extensionUtils; -const Me = ExtensionUtils.getCurrentExtension(); -const Lib = Me.imports.lib; - -const SETTING_BLINK_RATE = 'blinkrate'; -const SETTING_USECOLOR = 'usecolor'; -const SETTING_COLOR = 'color'; -const SETTING_USEBACKGROUNDCOLOR = 'usebackgroundcolor'; -const SETTING_BACKGROUNDCOLOR = 'backgroundcolor'; -const SETTING_CHAT_ONLY = 'chatonly'; -const SETTING_FORCE = 'force'; -const SETTING_BLACKLIST = 'application-list'; -const SETTING_FILTER_TYPE = 'filter'; - -let settings, messageStyleHandler; -let originalCountUpdated, originalDestroy; - -function _MessageStyleHandler() { - - /* - Public API - */ - - this.init = function() { - this._signals = {}; - this._statusChangedId = null; - this._loopTimeoutId = null; - this._oldStyle = null; - this._hasStyleAdded = false; - - this._presence = new GnomeSession.Presence( - Lang.bind(this, function(proxy, error) { - if (error) { - logError(error, 'Error while reading gnome-session presence'); - return; - } - })); - } - - this.enable = function() { - this._statusChangedId = this._presence.connectSignal( - 'StatusChanged', Lang.bind(this, function(proxy, senderName, [status]) { - this._presence.status = status; - this._onNotificationsSwitchToggled(); - })); - - // Connect settings change events, so we can update message style - // as soon as the user makes the change - this._connectSetting(SETTING_USECOLOR); - this._connectSetting(SETTING_COLOR); - this._connectSetting(SETTING_BACKGROUNDCOLOR); - this._connectSetting(SETTING_USEBACKGROUNDCOLOR); - this._connectSetting(SETTING_CHAT_ONLY); - this._connectSetting(SETTING_FORCE); - this._connectSetting(SETTING_BLINK_RATE); - - // Check for existing message counters when extension were - // loaded on an already running shell. - this.updateMessageStyle(); - } - - this.disable = function() { - this._presence.disconnectSignal(this._statusChangedId); - for (let key in this._signals) { - settings.disconnect(this._signals[key]); - delete this._signals[key]; - } - - this._removeMessageStyle(); - } - - this.updateMessageStyle = function() { - this.notificationStatus = - (this._presence.status != GnomeSession.PresenceStatus.BUSY); - let sources = Main.messageTray.getSources(); - - if (settings.get_boolean(SETTING_FORCE) || this.notificationStatus) { - let chatOnly = settings.get_boolean(SETTING_CHAT_ONLY); - let filter = settings.get_int(SETTING_FILTER_TYPE); - let currentItems = settings.get_strv(SETTING_BLACKLIST); - currentItems = Lib.getAppNamesFromAppInfos(currentItems); - - for (let i = 0; i < sources.length; i++) { - let source = sources[i]; - - if (chatOnly && !source.isChat) { - // The user choose to only be alerted by real chat notifications - continue; - } - if (source.isMuted) { - // Do not alert for muted notifications - continue; - } - if((filter == 0) && (currentItems.indexOf(source.title) != -1)) { - // Blacklist - continue; - } - if((filter == 1) && (currentItems.indexOf(source.title) == -1)) { - // Whitelist - continue; - } - if (this._hasNotifications(source)) { - this._addMessageStyle(); - return; - } - } - } - // If for above ended without adding the style, that means there's - // no counter and we need to remove the message style. - this._removeMessageStyle(); - } - - /* - Private - */ - - this._connectSetting = function(setting) { - this._signals[setting] = settings.connect( - "changed::" + setting, Lang.bind(this, this._onSettingsChanged)); - } - - this._hasNotifications = function(source) { - if (source.countVisible) { - return true; - } - for (let n = 0; n < source.notifications.length; n++) { - if (!source.notifications[n].resident) { - return true; - } - } - return false; - } - - this._toggleStyle = function() { - if (!this._hasStyleAdded) { - // Notifications may have been cleared since loop timer was added, - // return false to stop the timeout. Just a precaution, should not happen - return false; - } - - let dateMenu = Main.panel.statusArea.dateMenu; - let actor = dateMenu instanceof Clutter.Actor ? dateMenu : dateMenu.actor; - let actualStyle = (actor.style) ? actor.style : ""; - - let userStyle = ""; - if (settings.get_boolean(SETTING_USECOLOR)) { - userStyle += "color: " + settings.get_string(SETTING_COLOR) + ";"; - } - if (settings.get_boolean(SETTING_USEBACKGROUNDCOLOR)) { - userStyle += "background-color: " + settings.get_string(SETTING_BACKGROUNDCOLOR) + ";"; - } - - actor.style = (actor.style == this._oldStyle) ? actualStyle.concat(userStyle) : this._oldStyle; - - // keep looping - return true; - } - - this._addMessageStyle = function() { - if (this._hasStyleAdded) { - this._removeMessageStyle(); - } - - let dateMenu = Main.panel.statusArea.dateMenu; - let loopDelay = settings.get_int(SETTING_BLINK_RATE); - - let actor = dateMenu instanceof Clutter.Actor ? dateMenu : dateMenu.actor; - this._oldStyle = actor.style; - this._hasStyleAdded = true; - - if (loopDelay > 0) { - this._loopTimeoutId = Mainloop.timeout_add( - loopDelay, Lang.bind(this, this._toggleStyle)) - } else { - this._toggleStyle(); - } - } - - this._removeMessageStyle = function() { - if (!this._hasStyleAdded) { - return; - } - - this._hasStyleAdded = false; - if (this._loopTimeoutId != null) { - // Stop the looping - Mainloop.source_remove(this._loopTimeoutId); - this._loopTimeoutId = null; - } - - let dateMenu = Main.panel.statusArea.dateMenu; - let actor = dateMenu instanceof Clutter.Actor ? dateMenu : dateMenu.actor; - actor.style = this._oldStyle; - this._oldStyle = null; - } - - /* - Callbacks - */ - - this._onSettingsChanged = function() { - this.updateMessageStyle(); - } - - this._onNotificationsSwitchToggled = function() { - this.updateMessageStyle(); - } -} - -/* - Monkey-patchs for MessageTray.Source -*/ - -function _countUpdated() { - originalCountUpdated.call(this); - - messageStyleHandler.updateMessageStyle(); -} - -function _destroy() { - originalDestroy.call(this); - - messageStyleHandler.updateMessageStyle(); -} - -/* - Shell-extensions handlers -*/ - -function init() { - Lib.initTranslations(Me); - settings = Lib.getSettings(Me); - - messageStyleHandler = new _MessageStyleHandler(); - messageStyleHandler.init(); -} - -function enable() { - if (MessageTray.Source.prototype.countUpdated == _countUpdated) { - return; - } - originalCountUpdated = MessageTray.Source.prototype.countUpdated; - originalDestroy = MessageTray.Source.prototype.destroy; - - MessageTray.Source.prototype.countUpdated = _countUpdated; - MessageTray.Source.prototype.destroy = _destroy; - - messageStyleHandler.enable(); -} - -function disable() { - MessageTray.Source.prototype.countUpdated = originalCountUpdated; - MessageTray.Source.prototype.destroy = originalDestroy; - - messageStyleHandler.disable(); -} diff --git a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/lib.js b/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/lib.js deleted file mode 100644 index 989e75d9..00000000 --- a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/lib.js +++ /dev/null @@ -1,131 +0,0 @@ -/* - * Copyright (C) 2012 Thiago Bellini - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - * - * Most of this code was forked from gnome-shell-extensions convenience.js: - * http://git.gnome.org/browse/gnome-shell-extensions/tree/lib/convenience.js - * - */ - -const Gettext = imports.gettext; -const Gdk = imports.gi.Gdk; -const Gio = imports.gi.Gio; - -const Config = imports.misc.config; - -/* - Extension utils - */ - -function initTranslations(extension) { - // This is the same as UUID from metadata.json - let domain = 'gnome-shell-notifications-alert'; - - // check if this extension was built with "make zip-file", and thus - // has the locale files in a subfolder - // otherwise assume that extension has been installed in the - // same prefix as gnome-shell - let localeDir = extension.dir.get_child('locale'); - if (localeDir.query_exists(null)) { - Gettext.bindtextdomain(domain, localeDir.get_path()); - } else { - Gettext.bindtextdomain(domain, Config.LOCALEDIR); - } -} - -function getSettings(extension) { - let schema = 'org.gnome.shell.extensions.notifications-alert'; - - const GioSSS = Gio.SettingsSchemaSource; - - // check if this extension was built with "make zip-file", and thus - // has the schema files in a subfolder - // otherwise assume that extension has been installed in the - // same prefix as gnome-shell (and therefore schemas are available - // in the standard folders) - let schemaDir = extension.dir.get_child('schemas'); - let schemaSource; - if (schemaDir.query_exists(null)) { - schemaSource = GioSSS.new_from_directory(schemaDir.get_path(), - GioSSS.get_default(), - false); - } else { - schemaSource = GioSSS.get_default(); - } - - let schemaObj = schemaSource.lookup(schema, true); - if (!schemaObj) { - throw new Error('Schema ' + schema + ' could not be found for extension ' + - extension.metadata.uuid + '. Please check your installation.'); - } - - return new Gio.Settings({settings_schema: schemaObj}); -} - -/* - Color utils - */ - -function _scaleRound(value) { - // Based on gtk/gtkcoloreditor.c - value = Math.floor((value / 255) + 0.5); - value = Math.max(value, 0); - value = Math.min(value, 255); - return value; -} - -function _dec2Hex(value) { - value = value.toString(16); - - while (value.length < 2) { - value = '0' + value; - } - - return value; -} - -function getColorByHexadecimal(hex) { - let colorArray = Gdk.Color.parse(hex); - let color = null; - - if (colorArray[0]) { - color = colorArray[1]; - } else { - // On any error, default to red - color = new Gdk.Color({red: 65535}); - } - - return color; -} - -function getHexadecimalByColor(color) { - let red = _scaleRound(color.red); - let green = _scaleRound(color.green); - let blue = _scaleRound(color.blue); - return "#" + _dec2Hex(red) + _dec2Hex(green) + _dec2Hex(blue); -} - -function getAppNamesFromAppInfos(list) { - let appNames = [ ]; - for (let i = 0; i < list.length; i++) { - let id = list[i]; - let appInfo = Gio.DesktopAppInfo.new(id); - if (!appInfo) - continue; - appNames.push(appInfo.get_name()); - } - return appNames; -} diff --git a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/cs_CZ.po b/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/cs_CZ.po deleted file mode 100644 index d17e2613..00000000 --- a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/cs_CZ.po +++ /dev/null @@ -1,117 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-12-09 21:12-0300\n" -"PO-Revision-Date: 2020-02-23 10:15+0200\n" -"Last-Translator: \n" -"Language-Team: \n" -"Language: cs_CZ\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.1\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" - -#: src/prefs.js:276 -msgid "Add" -msgstr "Přidat" - -#: src/prefs.js:257 -msgid "Add Rule" -msgstr "Přidat pravidlo" - -#: src/prefs.js:177 -msgid "Alert background color" -msgstr "Barva pozadí výstrahy" - -#: src/prefs.js:207 -msgid "Alert even if you set notifications to OFF on user menu (default: OFF)" -msgstr "" -"Výstrahy i když je zobrazování upozorňování v uživatelské nabídce vypnuto" -"(výchozí: vypnuto)" - -#: src/prefs.js:173 -msgid "Alert font color" -msgstr "Barva písma výstrahy" - -#: src/prefs.js:241 -msgid "Application" -msgstr "Aplikace" - -#: src/prefs.js:140 -msgid "Blacklist" -msgstr "Seznam vyloučených" - -#: src/prefs.js:271 -msgid "Blacklist app" -msgstr "Zařadit aplikaci na seznam vyloučených" - -#: src/prefs.js:184 -msgid "Blink rate (in ms)" -msgstr "Rychlost blikání (v ms)" - -#: src/prefs.js:281 -msgid "Choose an application to blacklist:" -msgstr "Zvolte aplikaci pro zařazení na seznam vyloučených:" - -#: src/prefs.js:123 -msgid "Filter List" -msgstr "Seznam filtru" - -#: src/prefs.js:133 -msgid "Filter Type" -msgstr "Typ filtru" - -#: src/prefs.js:206 -msgid "Force alerting even when notifications are set to OFF" -msgstr "Zvýrazňovat i pokud jsou upozorňování vypnuta" - -#: src/prefs.js:202 -msgid "Only alert for chat notifications" -msgstr "Zobrazovat výstrahy pouze na zprávy konverzací" - -#: src/prefs.js:203 -msgid "" -"Only chat notifications (like Empathy ones) will get alerted (default: OFF)" -msgstr "" -"Výstrahy budou zobrazovány pouze pro zprávy konverzací – např. Empathy (výchozí: vypnuto)" - -#: src/prefs.js:178 -msgid "The background color used to paint the message on user's menu" -msgstr "Barva pozadí, kterou je zobrazena zpráva v uživatelské nabídce" - -#: src/prefs.js:174 -msgid "The color used to paint the message on user's menu" -msgstr "Barva, kterou je zobrazena zpráva v uživatelské nabídce" - -#: src/prefs.js:185 -msgid "The rate that the alert blinks, in ms. 0 means no blink (default: 800)" -msgstr "" -"Určuje, jakou rychlostí má problikávat zvýrazňující a výchozí barva " -"(800=výchozí hodnota, méně=rychleji, více=pomaleji, 0=žádné blikání)" - -#: src/prefs.js:198 -msgid "Use alert background color" -msgstr "Použít barvu pozadí výstrahy" - -#: src/prefs.js:194 -msgid "Use alert font color" -msgstr "Použít barvu písma výstrahy" - -#: src/prefs.js:199 -msgid "Use the alert background color for alert blinks (default: OFF)" -msgstr "Blikat barvou jakou má pozadí výstrahy (výchozí: vypnuto)" - -#: src/prefs.js:195 -msgid "Use the alert font color for alert blinks (default: ON)" -msgstr "Blikat barvou jakou má písmo výstrahy (výchozí: zapnuto)" - -#: src/prefs.js:141 -msgid "Whitelist" -msgstr "Seznam povolených" diff --git a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/cs_CZ/LC_MESSAGES/gnome-shell-notifications-alert.mo b/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/cs_CZ/LC_MESSAGES/gnome-shell-notifications-alert.mo deleted file mode 100644 index 24f166b3..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/cs_CZ/LC_MESSAGES/gnome-shell-notifications-alert.mo and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/de_DE.po b/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/de_DE.po deleted file mode 100644 index 186ab068..00000000 --- a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/de_DE.po +++ /dev/null @@ -1,126 +0,0 @@ -# German translations for gnome-shell-notifications-alert package. -# Copyright (C) 2013 Jonatan Zeidler -# This file is distributed under the same license as the gnome-shell-notifications-alert package. -# Jonatan Zeidler , 2013. -# Onno Giesmann , 2019. -# -msgid "" -msgstr "" -"Project-Id-Version: gnome-shell-notifications-alert\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-12-09 21:12-0300\n" -"PO-Revision-Date: 2019-12-29 21:14+0100\n" -"Last-Translator: Onno Giesmann \n" -"Language-Team: German <--->\n" -"Language: de\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.2.4\n" - -#: src/prefs.js:276 -msgid "Add" -msgstr "Hinzufügen" - -#: src/prefs.js:257 -msgid "Add Rule" -msgstr "Regel hinzufügen" - -#: src/prefs.js:177 -msgid "Alert background color" -msgstr "Hintergrundfarbe bei Benachrichtigung" - -#: src/prefs.js:207 -msgid "Alert even if you set notifications to OFF on user menu (default: OFF)" -msgstr "" -"Benachrichtigungen auch dann anzeigen, wenn sie im Nutzermenü ausgeschaltet " -"sind (Vorgabe: AUS)" - -#: src/prefs.js:173 -msgid "Alert font color" -msgstr "Schriftfarbe bei Benachrichtigung" - -#: src/prefs.js:241 -msgid "Application" -msgstr "Anwendung" - -#: src/prefs.js:140 -msgid "Blacklist" -msgstr "Schwarze Liste" - -#: src/prefs.js:271 -msgid "Blacklist app" -msgstr "Anwendung für schwarze Liste" - -#: src/prefs.js:184 -msgid "Blink rate (in ms)" -msgstr "Blinkgeschwindigkeit (in ms)" - -#: src/prefs.js:281 -msgid "Choose an application to blacklist:" -msgstr "Anwendung für schwarze Liste auswählen:" - -#: src/prefs.js:123 -msgid "Filter List" -msgstr "Filterliste" - -#: src/prefs.js:133 -msgid "Filter Type" -msgstr "Filtertyp" - -#: src/prefs.js:206 -msgid "Force alerting even when notifications are set to OFF" -msgstr "Auch benachrichtigen, wenn sie allgemein auf AUS gestellt sind" - -#: src/prefs.js:202 -msgid "Only alert for chat notifications" -msgstr "Nur bei Chat-Benachrichtigungen aktivieren" - -#: src/prefs.js:203 -msgid "" -"Only chat notifications (like Empathy ones) will get alerted (default: OFF)" -msgstr "" -"Benachrichtigt nur bei Chat-Meldungen (z.B. von Empathy) (Vorgabe: AUS)" - -#: src/prefs.js:178 -msgid "The background color used to paint the message on user's menu" -msgstr "" -"Diese Farbe wird verwendet, um den Hintergrund vom Nutzermenü bei " -"Benachrichtigungen entsprechend einzufärben" - -#: src/prefs.js:174 -msgid "The color used to paint the message on user's menu" -msgstr "" -"Diese Farbe wird verwendet, um die Schrift im Nutzermenü bei " -"Benachrichtigungen entsprechend einzufärben" - -#: src/prefs.js:185 -msgid "The rate that the alert blinks, in ms. 0 means no blink (default: 800)" -msgstr "" -"Gibt an, mit welcher Geschwindigkeit der Alarm blinkt (in ms). Wert 0 " -"bedeutet kein Blinken (Vorgabe: 800)" - -#: src/prefs.js:198 -msgid "Use alert background color" -msgstr "Hintergrundfarbe bei Benachrichtigung anwenden" - -#: src/prefs.js:194 -msgid "Use alert font color" -msgstr "Schriftfarbe bei Benachrichtigung anwenden" - -#: src/prefs.js:199 -msgid "Use the alert background color for alert blinks (default: OFF)" -msgstr "" -"Bei Benachrichtigungen wird der Hintergrund entsprechend dem eingestellten " -"Wert eingefärbt (Vorgabe: AUS)" - -#: src/prefs.js:195 -msgid "Use the alert font color for alert blinks (default: ON)" -msgstr "" -"Bei Benachrichtigungen wird die Schrift entsprechend dem eingestellten Wert " -"eingefärbt (Vorgabe: AN)" - -#: src/prefs.js:141 -msgid "Whitelist" -msgstr "Weiße Liste" diff --git a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/de_DE/LC_MESSAGES/gnome-shell-notifications-alert.mo b/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/de_DE/LC_MESSAGES/gnome-shell-notifications-alert.mo deleted file mode 100644 index 5c6a29f5..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/de_DE/LC_MESSAGES/gnome-shell-notifications-alert.mo and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/messages.pot b/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/messages.pot deleted file mode 100644 index 6b10d2e4..00000000 --- a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/messages.pot +++ /dev/null @@ -1,111 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-12-09 21:12-0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#: src/prefs.js:276 -msgid "Add" -msgstr "" - -#: src/prefs.js:257 -msgid "Add Rule" -msgstr "" - -#: src/prefs.js:177 -msgid "Alert background color" -msgstr "" - -#: src/prefs.js:207 -msgid "Alert even if you set notifications to OFF on user menu (default: OFF)" -msgstr "" - -#: src/prefs.js:173 -msgid "Alert font color" -msgstr "" - -#: src/prefs.js:241 -msgid "Application" -msgstr "" - -#: src/prefs.js:140 -msgid "Blacklist" -msgstr "" - -#: src/prefs.js:271 -msgid "Blacklist app" -msgstr "" - -#: src/prefs.js:184 -msgid "Blink rate (in ms)" -msgstr "" - -#: src/prefs.js:281 -msgid "Choose an application to blacklist:" -msgstr "" - -#: src/prefs.js:123 -msgid "Filter List" -msgstr "" - -#: src/prefs.js:133 -msgid "Filter Type" -msgstr "" - -#: src/prefs.js:206 -msgid "Force alerting even when notifications are set to OFF" -msgstr "" - -#: src/prefs.js:202 -msgid "Only alert for chat notifications" -msgstr "" - -#: src/prefs.js:203 -msgid "" -"Only chat notifications (like Empathy ones) will get alerted (default: OFF)" -msgstr "" - -#: src/prefs.js:178 -msgid "The background color used to paint the message on user's menu" -msgstr "" - -#: src/prefs.js:174 -msgid "The color used to paint the message on user's menu" -msgstr "" - -#: src/prefs.js:185 -msgid "The rate that the alert blinks, in ms. 0 means no blink (default: 800)" -msgstr "" - -#: src/prefs.js:198 -msgid "Use alert background color" -msgstr "" - -#: src/prefs.js:194 -msgid "Use alert font color" -msgstr "" - -#: src/prefs.js:199 -msgid "Use the alert background color for alert blinks (default: OFF)" -msgstr "" - -#: src/prefs.js:195 -msgid "Use the alert font color for alert blinks (default: ON)" -msgstr "" - -#: src/prefs.js:141 -msgid "Whitelist" -msgstr "" diff --git a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/nl_NL.po b/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/nl_NL.po deleted file mode 100644 index 8cdf79cf..00000000 --- a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/nl_NL.po +++ /dev/null @@ -1,123 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-12-09 21:12-0300\n" -"PO-Revision-Date: 2019-08-06 12:16+0200\n" -"Last-Translator: Heimen Stoffels \n" -"Language-Team: \n" -"Language: nl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.2.3\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: src/prefs.js:276 -msgid "Add" -msgstr "Toevoegen" - -#: src/prefs.js:257 -msgid "Add Rule" -msgstr "Regel toevoegen" - -#: src/prefs.js:177 -#, fuzzy -msgid "Alert background color" -msgstr "Meldingskleur" - -#: src/prefs.js:207 -msgid "Alert even if you set notifications to OFF on user menu (default: OFF)" -msgstr "" -"Ook knipperen bij nieuwe meldingen als meldingen zijn uitgeschakeld " -"(standaard: UIT)" - -#: src/prefs.js:173 -#, fuzzy -msgid "Alert font color" -msgstr "Meldingskleur" - -#: src/prefs.js:241 -msgid "Application" -msgstr "Toepassing" - -#: src/prefs.js:140 -msgid "Blacklist" -msgstr "Zwarte lijst" - -#: src/prefs.js:271 -msgid "Blacklist app" -msgstr "Toev. aan zwarte lijst" - -#: src/prefs.js:184 -msgid "Blink rate (in ms)" -msgstr "Knippersnelheid (in ms)" - -#: src/prefs.js:281 -msgid "Choose an application to blacklist:" -msgstr "Kies een toepassing voor de zwarte lijst:" - -#: src/prefs.js:123 -msgid "Filter List" -msgstr "Filterlijst" - -#: src/prefs.js:133 -msgid "Filter Type" -msgstr "Soort filter" - -#: src/prefs.js:206 -msgid "Force alerting even when notifications are set to OFF" -msgstr "" -"Knipperen bij nieuwe meldingen afdwingen als meldingen zijn uitgeschakeld" - -#: src/prefs.js:202 -msgid "Only alert for chat notifications" -msgstr "Alleen knipperen bij chatmeldingen" - -#: src/prefs.js:203 -msgid "" -"Only chat notifications (like Empathy ones) will get alerted (default: OFF)" -msgstr "" -"Alleen knipperen bij chatmeldingen (zoals bijv. die van Empathy - standaard: " -"UIT)" - -#: src/prefs.js:178 -#, fuzzy -msgid "The background color used to paint the message on user's menu" -msgstr "De kleur van het knipperpatroon" - -#: src/prefs.js:174 -msgid "The color used to paint the message on user's menu" -msgstr "De kleur van het knipperpatroon" - -#: src/prefs.js:185 -msgid "The rate that the alert blinks, in ms. 0 means no blink (default: 800)" -msgstr "" -"De snelheid waarmee wordt geknipperd, in ms. 0 = niet knipperen (standaard: " -"800)" - -#: src/prefs.js:198 -msgid "Use alert background color" -msgstr "" - -#: src/prefs.js:194 -#, fuzzy -msgid "Use alert font color" -msgstr "Meldingskleur" - -#: src/prefs.js:199 -msgid "Use the alert background color for alert blinks (default: OFF)" -msgstr "" - -#: src/prefs.js:195 -msgid "Use the alert font color for alert blinks (default: ON)" -msgstr "" - -#: src/prefs.js:141 -msgid "Whitelist" -msgstr "Witte lijst" diff --git a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/nl_NL/LC_MESSAGES/gnome-shell-notifications-alert.mo b/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/nl_NL/LC_MESSAGES/gnome-shell-notifications-alert.mo deleted file mode 100644 index 61099d64..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/nl_NL/LC_MESSAGES/gnome-shell-notifications-alert.mo and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/pt_BR.po b/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/pt_BR.po deleted file mode 100644 index a3afe930..00000000 --- a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/pt_BR.po +++ /dev/null @@ -1,116 +0,0 @@ -# Brazilian Portuguese translations for gnome-shell-notifications-alert package. -# Copyright (C) 2013 THE gnome-shell-notifications-alert's COPYRIGHT HOLDER -# This file is distributed under the same license as the gnome-shell-notifications-alert package. -# Thiago Bellini , 2013. -# -msgid "" -msgstr "" -"Project-Id-Version: gnome-shell-notifications-alert\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-12-09 21:12-0300\n" -"PO-Revision-Date: 2013-02-02 17:09-0200\n" -"Last-Translator: Thiago Bellini \n" -"Language-Team: Brazilian Portuguese\n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: src/prefs.js:276 -msgid "Add" -msgstr "Adicionar" - -#: src/prefs.js:257 -msgid "Add Rule" -msgstr "Adicionar Regra" - -#: src/prefs.js:177 -msgid "Alert background color" -msgstr "Cor de fundo do alerta" - -#: src/prefs.js:207 -msgid "Alert even if you set notifications to OFF on user menu (default: OFF)" -msgstr "" -"Alertar mesmo se as suas notificações estão desligadas no menu do usuário " -"(padrão: Desligado)" - -#: src/prefs.js:173 -msgid "Alert font color" -msgstr "Cor da fonte do alerta" - -#: src/prefs.js:241 -msgid "Application" -msgstr "Aplicativo" - -#: src/prefs.js:140 -msgid "Blacklist" -msgstr "Lista negra" - -#: src/prefs.js:271 -msgid "Blacklist app" -msgstr "Aplicativos na lista negra" - -#: src/prefs.js:184 -msgid "Blink rate (in ms)" -msgstr "Taxa de intermitência (em ms)" - -#: src/prefs.js:281 -msgid "Choose an application to blacklist:" -msgstr "Escolha um aplicativo para adicionar na lista negra:" - -#: src/prefs.js:123 -msgid "Filter List" -msgstr "Lista do filtro" - -#: src/prefs.js:133 -msgid "Filter Type" -msgstr "Tipo do filtro" - -#: src/prefs.js:206 -msgid "Force alerting even when notifications are set to OFF" -msgstr "Alerta forçado mesmo quando as notificações estão desligadas" - -#: src/prefs.js:202 -msgid "Only alert for chat notifications" -msgstr "Alertar apenas para notificações de bate-papo" - -#: src/prefs.js:203 -msgid "" -"Only chat notifications (like Empathy ones) will get alerted (default: OFF)" -msgstr "" -"Apenas notificações de bate-papo (como as do Empathy) serão alertadas " -"(padrão: Desligado)" - -#: src/prefs.js:178 -msgid "The background color used to paint the message on user's menu" -msgstr "A cor utilizada para pintar o fundo da mensagem no menu do usuário" - -#: src/prefs.js:174 -msgid "The color used to paint the message on user's menu" -msgstr "A cor utilizada para pintar a mensagem no menu do usuário" - -#: src/prefs.js:185 -msgid "The rate that the alert blinks, in ms. 0 means no blink (default: 800)" -msgstr "" -"A taxa em que o alerta pisca, em ms. 0 significa não piscar (padrão: 800)" - -#: src/prefs.js:198 -msgid "Use alert background color" -msgstr "Usar cor de fundo do alerta" - -#: src/prefs.js:194 -msgid "Use alert font color" -msgstr "Cor da fonte do alerta" - -#: src/prefs.js:199 -msgid "Use the alert background color for alert blinks (default: OFF)" -msgstr "Usar a cor de fundo do alerta ao piscar (padrão: Desligado)" - -#: src/prefs.js:195 -msgid "Use the alert font color for alert blinks (default: ON)" -msgstr "Usar a cor da fonte do alerta ao piscar (padrão: Ligado)" - -#: src/prefs.js:141 -msgid "Whitelist" -msgstr "Lista branca" diff --git a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/pt_BR/LC_MESSAGES/gnome-shell-notifications-alert.mo b/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/pt_BR/LC_MESSAGES/gnome-shell-notifications-alert.mo deleted file mode 100644 index b7aa14b4..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/locale/pt_BR/LC_MESSAGES/gnome-shell-notifications-alert.mo and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/metadata.json b/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/metadata.json deleted file mode 100644 index 2553218d..00000000 --- a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/metadata.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "_generated": "Generated by SweetTooth, do not edit", - "description": "Whenever there is an unread notification (e.g. chat messages), blinks the message in the user's menu with a color chosen by the user.\n\nNow configurable (3.4+ only)!! Alert color and blink rate can be changed on settings ;)\n\nIf you have any question, be sure to take a look at the FAQ:\nhttp://goo.gl/lmwtW\n\nCredits: The idea of painting the message on user's menu was borrowed from 'Pidgin Persistent Notification' extension by nemo. The code itself has some parts forked from 'Message Notifier' extension by barisione, 'Media player indicator' extension by eon and convenience.js from git.gnome.org/gnome-shell-extensions. The blink idea and it's initial code was written by hossman. The initial gnome 3.10 support was done by Anthony25. The filtering support was done by ilgarmehmetali", - "name": "Notifications Alert", - "original-authors": [ - "Thiago Bellini" - ], - "shell-version": [ - "3.16", - "3.18", - "3.20", - "3.22", - "3.24", - "3.26", - "3.28", - "3.30", - "3.34", - "3.32" - ], - "url": "https://github.com/bellini666/gnome-shell-notifications-alert", - "uuid": "notifications-alert-on-user-menu@hackedbellini.gmail.com", - "version": 44 -} \ No newline at end of file diff --git a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/prefs.js b/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/prefs.js deleted file mode 100644 index ef8d05db..00000000 --- a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/prefs.js +++ /dev/null @@ -1,415 +0,0 @@ -/* - * Copyright (C) 2012 Thiago Bellini - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - * - * Most of this code was forked from media-player-indicator: - * https://extensions.gnome.org/extension/55/media-player-indicator/ - * - */ - -const GObject = imports.gi.GObject; -const Gio = imports.gi.Gio; -const Gtk = imports.gi.Gtk; -const Lang = imports.lang; - -const Gettext = imports.gettext.domain('gnome-shell-notifications-alert'); -const _ = Gettext.gettext; - -const ExtensionUtils = imports.misc.extensionUtils; -const Me = ExtensionUtils.getCurrentExtension(); -const Lib = Me.imports.lib; - -const SETTING_BLACKLIST = 'application-list'; -const SETTING_FILTER_TYPE = 'filter'; - -const Columns = { - APPINFO: 0, - DISPLAY_NAME: 1, - ICON: 2, -}; - -let settings; -let boolSettings; -let intSettings; -let colorSettings; - -function _createBoolSetting(setting) { - let hbox = new Gtk.Box({orientation: Gtk.Orientation.HORIZONTAL}); - - let settingLabel = new Gtk.Label({label: boolSettings[setting].label, - xalign: 0}); - - let settingSwitch = new Gtk.Switch({active: settings.get_boolean(setting)}); - settingSwitch.connect('notify::active', function(button) { - settings.set_boolean(setting, button.active); - }); - - if (boolSettings[setting].help) { - settingLabel.set_tooltip_text(boolSettings[setting].help); - settingSwitch.set_tooltip_text(boolSettings[setting].help); - } - - hbox.pack_start(settingLabel, true, true, 0); - hbox.add(settingSwitch); - - return hbox; -} - -function _createIntSetting(setting) { - let hbox = new Gtk.Box({orientation: Gtk.Orientation.HORIZONTAL}); - - let settingLabel = new Gtk.Label({label: intSettings[setting].label, - xalign: 0}); - - let spinButton = Gtk.SpinButton.new_with_range( - intSettings[setting].min, - intSettings[setting].max, - intSettings[setting].step) - spinButton.set_value(settings.get_int(setting)); - spinButton.connect('notify::value', function(spin) { - settings.set_int(setting, spin.get_value_as_int()); - }); - - if (intSettings[setting].help) { - settingLabel.set_tooltip_text(intSettings[setting].help); - spinButton.set_tooltip_text(intSettings[setting].help); - } - - hbox.pack_start(settingLabel, true, true, 0); - hbox.add(spinButton); - - return hbox; -} - -function _createColorSetting(setting) { - let hbox = new Gtk.Box({orientation: Gtk.Orientation.HORIZONTAL}); - - let settingLabel = new Gtk.Label({label: colorSettings[setting].label, - xalign: 0}); - - let color = Lib.getColorByHexadecimal(settings.get_string(setting)); - let colorButton = new Gtk.ColorButton(); - colorButton.set_color(color); - colorButton.connect('notify::color', function(button) { - let hex = Lib.getHexadecimalByColor(button.get_color()); - settings.set_string(setting, hex); - }); - - if (colorSettings[setting].help) { - settingLabel.set_tooltip_text(colorSettings[setting].help); - colorButton.set_tooltip_text(colorSettings[setting].help); - } - - hbox.pack_start(settingLabel, true, true, 0); - hbox.add(colorButton); - - return hbox; -} - -function _createFilterListSetting() { - let settingLabel = new Gtk.Label({label: _("Filter List"), xalign: 0}); - let widget = new Widget(); - let blbox = new Gtk.Grid({column_spacing: 5, row_spacing: 5, margin: 0}); - blbox.attach(settingLabel,0,0,1,1); - blbox.attach(widget,0,1,1,1); - return blbox; -} - -function _createFilterTypeSetting() { - let hbox = new Gtk.Box({orientation: Gtk.Orientation.HORIZONTAL}); - let settingLabel = new Gtk.Label({label: _("Filter Type"), xalign: 0}); - - let listStore = new Gtk.ListStore(); - listStore.set_column_types ([ - GObject.TYPE_STRING, - GObject.TYPE_STRING]); - - listStore.insert_with_valuesv (-1, [0, 1], [0, _("Blacklist")]); - listStore.insert_with_valuesv (-1, [0, 1], [1, _("Whitelist")]); - - let filterComboBox = new Gtk.ComboBox({ model: listStore }); - filterComboBox.set_active (settings.get_int(SETTING_FILTER_TYPE)); - filterComboBox.set_id_column(0); - - let rendererText = new Gtk.CellRendererText(); - filterComboBox.pack_start (rendererText, false); - filterComboBox.add_attribute (rendererText, "text", 1); - - filterComboBox.connect('changed', function(entry) { - let id = filterComboBox.get_active_id(); - if (id == null) - return; - settings.set_int(SETTING_FILTER_TYPE, id); - }); - - hbox.pack_start(settingLabel, true, true, 0); - hbox.add(filterComboBox); - return hbox; -} - -/* - Shell-extensions handlers -*/ - -function init() { - Lib.initTranslations(Me); - settings = Lib.getSettings(Me); - - colorSettings = { - color: { - label: _("Alert font color"), - help: _("The color used to paint the message on user's menu") - }, - backgroundcolor: { - label: _("Alert background color"), - help: _("The background color used to paint the message on user's menu") - }, - }; - - intSettings = { - blinkrate: { - label: _("Blink rate (in ms)"), - help: _("The rate that the alert blinks, in ms. 0 means no blink (default: 800)"), - min: 0, - max: 10000, - step: 1 - }, - }; - - boolSettings = { - usecolor: { - label: _("Use alert font color"), - help: _("Use the alert font color for alert blinks (default: ON)") - }, - usebackgroundcolor: { - label: _("Use alert background color"), - help: _("Use the alert background color for alert blinks (default: OFF)") - }, - chatonly: { - label: _("Only alert for chat notifications"), - help: _("Only chat notifications (like Empathy ones) will get alerted (default: OFF)") - }, - force: { - label: _("Force alerting even when notifications are set to OFF"), - help: _("Alert even if you set notifications to OFF on user menu (default: OFF)") - }, - }; -} - - -/* - Blacklist widget -*/ -const Widget = new GObject.Class({ - Name: 'NotificationsAlert.Prefs.BlackListWidget', - GTypeName: 'NotificationsAlertBlackListPrefsWidget', - Extends: Gtk.Grid, - - _init: function(params) { - this.parent(params); - this.set_orientation(Gtk.Orientation.VERTICAL); - - Lib.initTranslations(Me); - this._settings = Lib.getSettings(Me); - - this._store = new Gtk.ListStore(); - this._store.set_column_types([Gio.AppInfo, GObject.TYPE_STRING, Gio.Icon]); - - let scrolled = new Gtk.ScrolledWindow({ shadow_type: Gtk.ShadowType.IN}); - scrolled.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC); - scrolled.set_min_content_height(150); - this.add(scrolled); - - this._treeView = new Gtk.TreeView({ model: this._store, - hexpand: true, vexpand: true }); - this._treeView.get_selection().set_mode(Gtk.SelectionMode.SINGLE); - - let appColumn = new Gtk.TreeViewColumn({ expand: true, sort_column_id: Columns.DISPLAY_NAME, - title: _("Application") }); - let iconRenderer = new Gtk.CellRendererPixbuf; - appColumn.pack_start(iconRenderer, false); - appColumn.add_attribute(iconRenderer, "gicon", Columns.ICON); - let nameRenderer = new Gtk.CellRendererText; - appColumn.pack_start(nameRenderer, true); - appColumn.add_attribute(nameRenderer, "text", Columns.DISPLAY_NAME); - this._treeView.append_column(appColumn); - - scrolled.add(this._treeView); - - let toolbar = new Gtk.Toolbar({ icon_size: Gtk.IconSize.SMALL_TOOLBAR }); - toolbar.get_style_context().add_class(Gtk.STYLE_CLASS_INLINE_TOOLBAR); - this.add(toolbar); - - let newButton = new Gtk.ToolButton({ icon_name: 'bookmark-new-symbolic', - label: _("Add Rule"), - is_important: true }); - newButton.connect('clicked', Lang.bind(this, this._createNew)); - toolbar.add(newButton); - - let delButton = new Gtk.ToolButton({ icon_name: 'edit-delete-symbolic' }); - delButton.connect('clicked', Lang.bind(this, this._deleteSelected)); - toolbar.add(delButton); - - this._changedPermitted = true; - this._refresh(); - }, - - _createNew: function() { - let dialog = new Gtk.Dialog({ title: _("Blacklist app"), - transient_for: this.get_toplevel(), - use_header_bar: true, - modal: true }); - dialog.add_button(Gtk.STOCK_CANCEL, Gtk.ResponseType.CANCEL); - let addButton = dialog.add_button(_("Add"), Gtk.ResponseType.OK); - dialog.set_default_response(Gtk.ResponseType.OK); - - dialog._appChooser = new Gtk.AppChooserWidget({ show_all: true }); - - let lbl = new Gtk.Label({label: _("Choose an application to blacklist:"), - xalign: 0.5}); - let hbox = new Gtk.Box({orientation: Gtk.Orientation.VERTICAL, - margin: 5}); - hbox.pack_start(lbl, false, true, 0); - hbox.pack_start(dialog._appChooser, true, true, 0); - dialog.get_content_area().pack_start(hbox, true, true, 0); - - dialog.connect('response', Lang.bind(this, function(dialog, id) { - if (id != Gtk.ResponseType.OK) { - dialog.destroy(); - return; - } - - let appInfo = dialog._appChooser.get_app_info(); - if (!appInfo) return; - - if (this._checkId( appInfo.get_id())){ - dialog.destroy(); - return; - } - - this._changedPermitted = false; - this._appendItem(appInfo.get_id()); - this._changedPermitted = true; - - let iter = this._store.append(); - - this._store.set(iter, - [Columns.APPINFO, Columns.ICON, Columns.DISPLAY_NAME], - [appInfo, appInfo.get_icon(), appInfo.get_display_name()]); - - dialog.destroy(); - })); - - dialog.show_all(); - }, - - _deleteSelected: function() { - let [any, model, iter] = this._treeView.get_selection().get_selected(); - - if (any) { - let appInfo = this._store.get_value(iter, Columns.APPINFO); - - this._changedPermitted = false; - this._removeItem(appInfo.get_id()); - this._changedPermitted = true; - this._store.remove(iter); - } - }, - - _refresh: function() { - if (!this._changedPermitted) - // Ignore this notification, model is being modified outside - return; - - this._store.clear(); - - let currentItems = this._settings.get_strv(SETTING_BLACKLIST); - let validItems = [ ]; - for (let i = 0; i < currentItems.length; i++) { - let id = currentItems[i]; - let appInfo = Gio.DesktopAppInfo.new(id); - if (!appInfo) - continue; - validItems.push(currentItems[i]); - - let iter = this._store.append(); - this._store.set(iter, - [Columns.APPINFO, Columns.ICON, Columns.DISPLAY_NAME], - [appInfo, appInfo.get_icon(), appInfo.get_display_name()]); - } - - if (validItems.length != currentItems.length) // some items were filtered out - this._settings.set_strv(SETTING_BLACKLIST, validItems); - }, - - _checkId: function(id) { - let items = this._settings.get_strv(SETTING_BLACKLIST); - return (items.indexOf(id) != -1); - }, - - _appendItem: function(id) { - let currentItems = this._settings.get_strv(SETTING_BLACKLIST); - currentItems.push(id); - this._settings.set_strv(SETTING_BLACKLIST, currentItems); - }, - - _removeItem: function(id) { - let currentItems = this._settings.get_strv(SETTING_BLACKLIST); - let index = currentItems.indexOf(id); - - if (index < 0) - return; - currentItems.splice(index, 1); - this._settings.set_strv(SETTING_BLACKLIST, currentItems); - } -}); - -function buildPrefsWidget() { - let frame = new Gtk.Box({orientation: Gtk.Orientation.VERTICAL, - border_width: 10}); - let vbox = new Gtk.Box({orientation: Gtk.Orientation.VERTICAL, - margin: 20, margin_top: 10, spacing: 5}); - let setting; - - // Add all color settings - for (setting in colorSettings) { - let hbox = _createColorSetting(setting); - vbox.add(hbox); - } - // Add all bool settings - for (setting in boolSettings) { - let hbox = _createBoolSetting(setting); - vbox.add(hbox); - } - // Add all int settings - for (setting in intSettings) { - let hbox = _createIntSetting(setting); - vbox.add(hbox); - } - - // Add filter type setting - let filterType = _createFilterTypeSetting(); - vbox.add(filterType); - - // Add filter list - let blbox = _createFilterListSetting(); - vbox.add(blbox); - - frame.add(vbox); - frame.show_all(); - - return frame; -} diff --git a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/schemas/gschemas.compiled b/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/schemas/gschemas.compiled deleted file mode 100755 index 9e55ef23..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/schemas/gschemas.compiled and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/schemas/org.gnome.shell.extensions.notifications-alert.gschema.xml b/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/schemas/org.gnome.shell.extensions.notifications-alert.gschema.xml deleted file mode 100644 index 15cfce87..00000000 --- a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/notifications-alert-on-user-menu@hackedbellini.gmail.com/schemas/org.gnome.shell.extensions.notifications-alert.gschema.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - - false - Force alerting even when notifications are set to OFF - Alert even if you set notifications to OFF on user menu - - - false - Only alert for chat notifications - Only chat notifications (like Empathy ones) will get alerted - - - 800 - Blink rate - The rate that the alert blinks, in ms. 0 means no blink - - - true - Use alert font color - Use the alert fontcolor for alert blinks - - - '#ff0000' - Alert font color - The color used to paint the message on user's menu - - - false - Use alert background color - Use the alert background color for alert blinks - - - '#ff0000' - Alert background color - The background color used to paint the message on user's menu - - - [ ] - Blacklist - A list of strings, each containing an application id (desktop file name), followed by a colon - - - 0 - Filter type - Filter type to use. 0 mean Blacklist, 1 means Whitelist - - - diff --git a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/sound-output-device-chooser@kgshank.net/utils/__pycache__/libpulse_introspect.cpython-39.pyc b/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/sound-output-device-chooser@kgshank.net/utils/__pycache__/libpulse_introspect.cpython-39.pyc index 0d33b1e9..0c265682 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/sound-output-device-chooser@kgshank.net/utils/__pycache__/libpulse_introspect.cpython-39.pyc and b/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/sound-output-device-chooser@kgshank.net/utils/__pycache__/libpulse_introspect.cpython-39.pyc differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/NEWS b/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/NEWS index 11fbe6d2..e7420445 100644 --- a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/NEWS +++ b/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/NEWS @@ -1,15 +1,78 @@ -3.38.2 -====== -* window-list: Honor changes in skip-taskbar property [Sergio; !130] -* window-list, workspace-indicator: Improve previews in workspace thumbs - [Florian; #260, !142] -* window-list, workspace-indicator: Adjust to 3.38 changes [Florian; !133] -* auto-move: Improve behavior on multi-monitor setups [Florian; !135] -* windowNavigator: Adjust to 3.38 changes [Thun; #259] -* Misc. bug fixes [Ray; !145] +40.1 +==== +* Disable welcome dialog in classic session [Florian; !169] +* windowsNavigator: Adjust to a late gnome-shell change [Florian; !170] Contributors: - Sergio Costas, Florian Müllner, Thun Pin, Ray Strode + Florian Müllner + +Translators: + Ngọc Quân Trần [vi], Anders Jonsson [sv], Carmen Bianca BAKKER [eo], + Pawan Chitrakar [ne], Quentin PAGÈS [oc] + +40.0 +==== + +Translators: + Jiri Grönroos [fi] + +40.rc +===== +* native-window-placement: Adjust to gnome-shell changes [Florian; !164] +* windows-navigator: Adjust to gnome-shell changes [Florian; !163] +* window-list, workspace-indicator: Only show previews for up to six workspaces + [Florian; !165] +* window-list, workspace-indicator: Improve workspace preview appearance + [Florian; !166] + +Contributors: + Florian Müllner + +Translators: + Fran Dieguez [gl] + +40.beta +======= +* Add tooltips to workspace thumbnails [Florian; !155] +* Drop arrows from top bar menus [Florian; !156] +* drive-menu: Mark mounts that can be unmounted as removable [Michael; !152] +* Remove horizontal-workspaces extension [Florian; !158] +* Adjust to shell overview changes [Florian; !159, !160] +* Fix crashes [Daniel; !157] +* Misc. bug fixes and cleanups [Florian; !154, !161] + +Contributors: + Michael Lawton, Florian Müllner, Daniel van Vugt + +Translators: + Аляксей [be], A S Alam [pa] + +40.alpha.1 +========== +* Don't depend on sassc when building from tarball [Florian; !150] +* Port extensions preferences to GTK4 [Florian; !148] +* Misc. bug fixes and cleanups [Florian, Jonas; !149, !151, !153] + +Contributors: + Jonas Dreßler, Florian Müllner + +40.alpha +======== +* window-list: Honor changes in skip-taskbar property [Sergio; !130] +* window-list, workspace-indicator: Adjust to 3.38 changes [Florian; !133] +* window-list, workspace-indicator: Improve previews in workspace thumbs + [Florian; #260, !142] +* auto-move: Improve behavior on multi-monitor setups [Florian; !135] +* windowNavigator: Adjust to 3.38 changes [Thun; #259] +* Misc. bug fixes and cleanups [Florian, Jonas Å, Jordan, Ray; !131, !136, + !137, !140, !141, !144, !146, !145] + +Contributors: + Sergio Costas, Florian Müllner, Jordan Petridis, Thun Pin, Ray Strode, + Jonas Ådahl + +Translators: + Fabio Tomat [fur], Jordi Mas [ca] 3.38.1 ====== diff --git a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/metadata.json b/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/metadata.json index b05b918d..8cabab41 100644 --- a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/metadata.json +++ b/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/metadata.json @@ -9,9 +9,9 @@ ], "settings-schema": "org.gnome.shell.extensions.user-theme", "shell-version": [ - "3.38" + "40" ], "url": "https://gitlab.gnome.org/GNOME/gnome-shell-extensions", "uuid": "user-theme@gnome-shell-extensions.gcampax.github.com", - "version": 42 + "version": 46 } \ No newline at end of file diff --git a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/paccache -ruk.txt b/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/paccache -ruk.txt deleted file mode 100644 index 5370ebfb..00000000 --- a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/paccache -ruk.txt +++ /dev/null @@ -1 +0,0 @@ -paccache -ruk0 diff --git a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/prefs.js b/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/prefs.js index 241e3c98..b9c12fa0 100644 --- a/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/prefs.js +++ b/tromjaro/gnome/live-overlay/etc/skel/.local/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/prefs.js @@ -26,18 +26,21 @@ class UserThemePrefsWidget extends Gtk.ScrolledWindow { }); const box = new Gtk.Box(); - this.add(box); + this.set_child(box); this._list = new Gtk.ListBox({ selection_mode: Gtk.SelectionMode.NONE, + show_separators: true, halign: Gtk.Align.CENTER, valign: Gtk.Align.START, hexpand: true, - margin: 60, + margin_start: 60, + margin_end: 60, + margin_top: 60, + margin_bottom: 60, }); this._list.get_style_context().add_class('frame'); - this._list.set_header_func(this._updateHeader.bind(this)); - box.add(this._list); + box.append(this._list); this._actionGroup = new Gio.SimpleActionGroup(); this._list.insert_action_group('theme', this._actionGroup); @@ -90,11 +93,10 @@ class UserThemePrefsWidget extends Gtk.ScrolledWindow { } _addTheme(name) { - const row = new ThemeRow(name); + const row = new ThemeRow(name, this._settings); this._rows.set(name, row); - this._list.add(row); - row.show_all(); + this._list.append(row); } async _enumerateDir(dir) { @@ -121,31 +123,28 @@ class UserThemePrefsWidget extends Gtk.ScrolledWindow { return fileInfos.map(info => info.get_name()); } - - _updateHeader(row, before) { - if (!before || row.get_header()) - return; - row.set_header(new Gtk.Separator()); - } }); const ThemeRow = GObject.registerClass( class ThemeRow extends Gtk.ListBoxRow { - _init(name) { - this._name = new GLib.Variant('s', name); - - super._init({ - action_name: 'theme.name', - action_target: this._name, - }); + _init(name, settings) { + this._name = name; + this._settings = settings; const box = new Gtk.Box({ spacing: 12, - margin: 12, + margin_start: 12, + margin_end: 12, + margin_top: 12, + margin_bottom: 12, + }); + super._init({ + action_name: 'theme.name', + action_target: new GLib.Variant('s', name), + child: box, }); - this.add(box); - box.add(new Gtk.Label({ + box.append(new Gtk.Label({ label: name || 'Default', hexpand: true, xalign: 0, @@ -157,24 +156,21 @@ class ThemeRow extends Gtk.ListBoxRow { icon_name: 'emblem-ok-symbolic', pixel_size: 16, }); - box.add(this._checkmark); + box.append(this._checkmark); - box.show_all(); + const id = this._settings.connect('changed::name', + this._syncCheckmark.bind(this)); + this._syncCheckmark(); - const id = this.connect('parent-set', () => { - this.disconnect(id); - - const actionGroup = this.get_action_group('theme'); - actionGroup.connect('action-state-changed::name', - this._syncCheckmark.bind(this)); - this._syncCheckmark(); + this.connect('destroy', () => { + this._settings.disconnect(id); + this._settings = null; }); } _syncCheckmark() { - const actionGroup = this.get_action_group('theme'); - const state = actionGroup.get_action_state('name'); - this._checkmark.opacity = this._name.equal(state); + const visible = this._name === this._settings.get_string('name'); + this._checkmark.opacity = visible ? 1. : 0; } }); @@ -182,8 +178,5 @@ function init() { } function buildPrefsWidget() { - let widget = new UserThemePrefsWidget(); - widget.show_all(); - - return widget; + return new UserThemePrefsWidget(); } diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/addonStartup.json.lz4 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/addonStartup.json.lz4 index 6722c647..468aff1e 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/addonStartup.json.lz4 and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/addonStartup.json.lz4 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/addons.json b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/addons.json index 3f7e0d3d..70fc4cd9 100644 --- a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/addons.json +++ b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/addons.json @@ -1 +1 @@ -{"schema":6,"addons":[{"id":"uBlock0@raymondhill.net","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/607/607454-32.png?modified=mcrushed","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/607/607454-64.png?modified=mcrushed","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/607/607454-128.png?modified=mcrushed"},"name":"uBlock Origin","version":"1.35.2","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3768975/ublock_origin-1.35.2-an+fx.xpi","homepageURL":"https://github.com/gorhill/uBlock#ublock-origin","supportURL":"https://old.reddit.com/r/uBlockOrigin/","description":"Finally, an efficient wide-spectrum content blocker. Easy on CPU and memory.","fullDescription":"uBlock Origin is not an \"ad blocker\", it's a wide-spectrum content blocker with CPU and memory efficiency as a primary feature.\n\n***\n\nOut of the box, these lists of filters are loaded and enforced:\n\n- EasyList (ads)\n- Peter Lowe’s Ad server list (ads and tracking)\n- EasyPrivacy (tracking)\n- Malware domains\n\nMore lists are available for you to select if you wish:\n\n- Fanboy’s Enhanced Tracking List\n- Dan Pollock’s hosts file\n- MVPS HOSTS\n- Spam404\n- And many others\n\nAdditionally, you can point-and-click to block JavaScript locally or globally, create your own global or local rules to override entries from filter lists, and many more advanced features.\n\n***\n\nFree.\nOpen source with public license (GPLv3)\nFor users by users.\n\nIf ever you really do want to contribute something, think about the people working hard to maintain the filter lists you are using, which were made available to use by all for free.\n\n***\n\n Documentation\n Release notes\n Community support @ Reddit\n Contributors @ GitHub\n Contributors @ Crowdin","weeklyDownloads":131594,"type":"extension","creator":{"name":"Raymond Hill","url":"https://addons.mozilla.org/en-US/firefox/user/11423598/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/238/238546.png?modified=1622132421","width":1011,"height":758,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/238/238546.jpg?modified=1622132421","thumbnailWidth":533,"thumbnailHeight":400,"caption":"The popup panel: default mode"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/238/238548.png?modified=1622132423","width":1011,"height":758,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/238/238548.jpg?modified=1622132423","thumbnailWidth":533,"thumbnailHeight":400,"caption":"The dashboard: stock filter lists"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/238/238547.png?modified=1622132425","width":1011,"height":758,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/238/238547.jpg?modified=1622132425","thumbnailWidth":533,"thumbnailHeight":400,"caption":"The popup panel: default-deny mode"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/238/238549.png?modified=1622132426","width":1011,"height":758,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/238/238549.jpg?modified=1622132426","thumbnailWidth":533,"thumbnailHeight":400,"caption":"The dashboard: settings"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/238/238552.png?modified=1622132430","width":970,"height":1800,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/238/238552.jpg?modified=1622132430","thumbnailWidth":216,"thumbnailHeight":400,"caption":"The popup panel in Firefox Preview: default mode with more blocking options revealed"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/230/230370.png?modified=1622132432","width":800,"height":600,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/230/230370.jpg?modified=1622132432","thumbnailWidth":533,"thumbnailHeight":400,"caption":"The unified logger tells you all that uBO is seeing and doing"}],"contributionURL":"","averageRating":4.7666,"reviewCount":3274,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/reviews/","updateDate":1622985028000},{"id":"{b9db16a4-6edc-47ec-a1f4-b86292ed211d}","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/3/3006-32.png?modified=mcrushed","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/3/3006-64.png?modified=mcrushed","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/3/3006-128.png?modified=mcrushed"},"name":"Video DownloadHelper","version":"7.4.0","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3695227/video_downloadhelper-7.4.0-fx.xpi","homepageURL":"http://www.downloadhelper.net/","supportURL":"http://www.downloadhelper.net/support.php","description":"The easy way to download and convert Web videos from hundreds of YouTube-like sites.","fullDescription":"Video DownloadHelper is the most complete tool for extracting videos and image files from websites and saving them to your hard drive.\n\nJust surf the web as you normally do. When DownloadHelper detects embedded videos it can access for download, the toolbar icon highlights and a simple menu allows you to download files by simply clicking an item.\n\nFor instance, if you go to a YouTube page, you'll be able to download the video directly on your file system. It also works with most other popular video sites like DailyMotion, Facebook, Periscope, Vimeo, Twitch, Liveleak, Vine, UStream, Fox, Bloomberg, RAI, France 2-3, Break, Metacafe, and thousands of others.\n\nVideo DownloadHelper supports several types of streamings, making the add-on unique amongst Video downloaders: HTTP, HLS, DASH, … Whenever a site uses a non-supported streaming technology, Video DownloadHelper is able to capture the media directly from the screen and generate a video file.\n\nBesides downloading, Video DownloadHelper is also capable of making file conversions (i.e. change audio and video formats) and aggregation (combining separate audio and video into a single file). This is an upgrade feature that helps pay for the free stuff (we need to eat too). You are not compelled to use conversion for downloading videos from websites, and you can avoid picking variants marked as ADP to avoid the need for aggregation.\n\nVideo overview on how to use Video DownloadHelper: https://www.youtube.com/watch?v=mZT8yI60k_4\n\nSupport can be obtained from the dedicated support forum.\n\nPlease stay tuned by following us on Twitter (@downloadhelper), or Facebook.","weeklyDownloads":64921,"type":"extension","creator":{"name":"mig","url":"https://addons.mozilla.org/en-US/firefox/user/32479/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/25/25993.png?modified=1622132280","width":200,"height":150,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/25/25993.jpg?modified=1622132280","thumbnailWidth":200,"thumbnailHeight":150,"caption":"Video DownloadHelper"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/154/154820.png?modified=1622132280","width":327,"height":124,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/154/154820.jpg?modified=1622132280","thumbnailWidth":327,"thumbnailHeight":124,"caption":"Video DownloadHelper animated toobar icon"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/154/154824.png?modified=1622132280","width":250,"height":200,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/154/154824.jpg?modified=1622132280","thumbnailWidth":250,"thumbnailHeight":200,"caption":"Video DownloadHelper main panel"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/154/154822.png?modified=1622132280","width":361,"height":289,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/154/154822.jpg?modified=1622132280","thumbnailWidth":361,"thumbnailHeight":289,"caption":"Video DownloadHelper main panel"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/154/154826.png?modified=1622132281","width":320,"height":317,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/154/154826.jpg?modified=1622132281","thumbnailWidth":320,"thumbnailHeight":317,"caption":"Video DownloadHelper available actions"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/154/154828.png?modified=1622132281","width":293,"height":250,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/154/154828.jpg?modified=1622132281","thumbnailWidth":293,"thumbnailHeight":250,"caption":"Video DownloadHelper quality variants settings"}],"contributionURL":"","averageRating":4.2803,"reviewCount":11319,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/video-downloadhelper/reviews/","updateDate":1621953924000},{"id":"jid1-MnnxcxisBPnSXQ@jetpack","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/506/506646-32.png?modified=mcrushed","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/506/506646-64.png?modified=mcrushed","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/506/506646-128.png?modified=mcrushed"},"name":"Privacy Badger","version":"2021.2.2","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3719726/privacy_badger-2021.2.2-an+fx.xpi","homepageURL":"https://privacybadger.org/","supportURL":"https://privacybadger.org/#faq","description":"Automatically learns to block invisible trackers.","fullDescription":"Privacy Badger automatically learns to block invisible trackers. Instead of keeping lists of what to block, Privacy Badger automatically discovers trackers based on their behavior.\n\nPrivacy Badger sends the Global Privacy Control signal to opt you out of data sharing and selling, and the Do Not Track signal to tell companies not to track you. If trackers ignore your wishes, Privacy Badger will learn to block them.\n\nBesides automatic tracker blocking, Privacy Badger replaces potentially useful trackers (video players, comments widgets, etc.) with click-to-activate placeholders, and removes outgoing link click tracking on Facebook and Google, with more privacy protections on the way.\n\nTo learn more, see the FAQ on Privacy Badger's homepage.","weeklyDownloads":23701,"type":"extension","creator":{"name":"EFF Technologists","url":"https://addons.mozilla.org/en-US/firefox/user/5474073/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/225/225184.png?modified=1622132341","width":1920,"height":1080,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/225/225184.jpg?modified=1622132341","thumbnailWidth":533,"thumbnailHeight":300,"caption":"Privacy Badger is a project of the Electronic Frontier Foundation"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/171/171793.png?modified=1622132342","width":700,"height":394,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/171/171793.jpg?modified=1622132342","thumbnailWidth":533,"thumbnailHeight":300,"caption":"Privacy Badger at work on the whitehouse.gov privacy policy page."}],"contributionURL":"https://www.paypal.me/SupportEFF?utm_content=product-page-contribute&utm_medium=referral&utm_source=addons.mozilla.org","averageRating":4.7898,"reviewCount":368,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/privacy-badger17/reviews/","updateDate":1612293514000},{"id":"chrome-gnome-shell@gnome.org","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/751/751081-32.png?modified=1521616823","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/751/751081-64.png?modified=1521616823","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/751/751081-128.png?modified=1521616823"},"name":"GNOME Shell integration","version":"10.1","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/898030/gnome_shell_integration-10.1-an+fx-linux.xpi","homepageURL":"https://wiki.gnome.org/Projects/GnomeShellIntegrationForChrome","supportURL":"https://bugzilla.gnome.org","description":"This extension provides integration with GNOME Shell and the corresponding extensions repository https://extensions.gnome.org","fullDescription":"You MUST install native connector for this extension to work.\n\nFor Arch Linux there is a PKGBUILD available in the AUR: https://aur.archlinux.org/packages/chrome-gnome-shell-git\n\nFor Debian, Fedora, Gentoo and Ubuntu you can install package named \"chrome-gnome-shell\".\n\nYou also can install connector manually. See https://wiki.gnome.org/Projects/GnomeShellIntegrationForChrome/Installation for install instructions.","weeklyDownloads":1463,"type":"extension","creator":{"name":"Yuri Konotopov","url":"https://addons.mozilla.org/en-US/firefox/user/12725919/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/183/183915.png?modified=1622132636","width":700,"height":438,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/183/183915.jpg?modified=1622132636","thumbnailWidth":533,"thumbnailHeight":334}],"contributionURL":"","averageRating":4.3333,"reviewCount":66,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/gnome-shell-integration/reviews/","updateDate":1521613807000},{"id":"{9350bc42-47fb-4598-ae0f-825e3dd9ceba}","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/918/918574-32.png?modified=1531770407","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/918/918574-64.png?modified=1531770407","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/918/918574-128.png?modified=1531770407"},"name":"Absolute Enable Right Click & Copy","version":"1.3.8","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/1205179/absolute_enable_right_click_copy-1.3.8-fx.xpi","homepageURL":null,"supportURL":null,"description":"Force Enable Right Click & Copy","fullDescription":"Get The Best Browsing Experience Without Limitations And Restrictions In An Online World\n\n★ Features :\n→ Remove Copy Text Protection On All Website\n→ Force Enable Right Click Button\n→ Allow Copy And Highlight\n→ Disable Annoying Dialog Message (Not Able To Copy Content On This Webpage)\n→ Re-Enable Context Menu\n→ Include \"Absolute Mode\" To Force Remove Any Type Of Protection\n\n------------------------------------------------------------------------\nIf You Like This Extension, Please Rate And Share\nMade Possible By Absolute","weeklyDownloads":2125,"type":"extension","creator":{"name":"Absolute","url":"https://addons.mozilla.org/en-US/firefox/user/13673741/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/204/204829.png?modified=1622132943","width":640,"height":400,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/204/204829.jpg?modified=1622132943","thumbnailWidth":533,"thumbnailHeight":333,"caption":"01"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/204/204830.png?modified=1622132944","width":640,"height":400,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/204/204830.jpg?modified=1622132944","thumbnailWidth":533,"thumbnailHeight":333,"caption":"02"}],"contributionURL":"","averageRating":4.5725,"reviewCount":171,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/absolute-enable-right-click/reviews/","updateDate":1547160307000},{"id":"keepassxc-browser@keepassxc.org","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/917/917354-32.png?modified=1586435702","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/917/917354-64.png?modified=1586435702","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/917/917354-128.png?modified=1586435702"},"name":"KeePassXC-Browser","version":"1.7.8.1","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3758952/keepassxc_browser-1.7.8.1-fx.xpi","homepageURL":"https://keepassxc.org/","supportURL":"https://github.com/keepassxreboot/keepassxc-browser","description":"Official browser plugin for the KeePassXC password manager (https://keepassxc.org).","fullDescription":"Official browser plugin for the KeePassXC password manager (https://keepassxc.org).\n\nThe thing computers can do best is storing information.\nYou shouldn't waste your time trying to remember and type your passwords.\nKeePassXC can store your passwords safely and auto-type them into your everyday websites and applications.","weeklyDownloads":1721,"type":"extension","creator":{"name":"KeePassXC Team","url":"https://addons.mozilla.org/en-US/firefox/user/13036987/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/197/197999.png?modified=1622132902","width":700,"height":198,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/197/197999.jpg?modified=1622132902","thumbnailWidth":533,"thumbnailHeight":151,"caption":"KeePassXC"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/234/234592.png?modified=1622132905","width":1513,"height":1047,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/234/234592.jpg?modified=1622132905","thumbnailWidth":533,"thumbnailHeight":369,"caption":"Settings page"}],"contributionURL":"https://www.paypal.me/jbevendorff?utm_content=product-page-contribute&utm_medium=referral&utm_source=addons.mozilla.org","averageRating":4.336,"reviewCount":164,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/keepassxc-browser/reviews/","updateDate":1618234520000},{"id":"wayback_machine@mozilla.org","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/711/711438-32.png?modified=1524082823","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/711/711438-64.png?modified=1524082823","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/711/711438-128.png?modified=1524082823"},"name":"Wayback Machine","version":"1.8.6","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/929315/wayback_machine-1.8.6-an+fx.xpi","homepageURL":null,"supportURL":"http://web.archive.org","description":"Detects dead pages, 404s, DNS failures & a range of other web breakdowns, offering to show archived versions via the Internet Archive's Wayback Machine. In addition you can archive web pages, and see their most recent & first archives.","fullDescription":"Detects dead pages, 404s, DNS failures & a range of other web breakdowns, offering to show archived versions via the Internet Archive's Wayback Machine. In addition you can archive web pages, and see their most recent & first archives.\n\nIf you used No More 404s on Test Pilot, this extention is for you!","weeklyDownloads":276,"type":"extension","creator":{"name":"Internet Archive","url":"https://addons.mozilla.org/en-US/firefox/user/12373129/"},"developers":[{"name":"Mark Graham","url":"https://addons.mozilla.org/en-US/firefox/user/12835321/"}],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/182/182679.png?modified=1622132569","width":199,"height":249,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/182/182679.jpg?modified=1622132569","thumbnailWidth":199,"thumbnailHeight":249,"caption":"Save an archive or a URL to the Wayback Machine or see the first, or most recent, archive of that URL."},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/182/182680.png?modified=1622132569","width":700,"height":330,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/182/182680.jpg?modified=1622132569","thumbnailWidth":533,"thumbnailHeight":251,"caption":"If there is an archive in the Wayback Machine, of a page not available via the \"live web\" you will be shown this pop-up."}],"contributionURL":"","averageRating":3.8511,"reviewCount":106,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/wayback-machine_new/reviews/","updateDate":1524081009000},{"id":"{b7f9d2cd-d772-4302-8c3f-eb941af36f76}","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/2600/2600548-32.png?modified=b183bc03","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/2600/2600548-64.png?modified=b183bc03","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/2600/2600548-128.png?modified=b183bc03"},"name":"Privacy Redirect","version":"1.1.47","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3761053/privacy_redirect-1.1.47-an+fx.xpi","homepageURL":"https://github.com/SimonBrazell/privacy-redirect","supportURL":"https://github.com/SimonBrazell/privacy-redirect","description":"Redirects Twitter, YouTube, Instagram and more to privacy friendly alternatives.","fullDescription":"Redirects Twitter, YouTube, Instagram, & Google Maps requests to privacy friendly alternatives - Nitter, Invidious, Bibliogram, & OpenStreetMap.\n\nAllows for setting custom instances, toggling all redirects on/off and more.\n\n★ More Info: ℹ️\n\n Nitter\n Invidious\n Bibliogram\n OpenStreetMap\n\n\nThe code for this web extension is available on Github.\n\n★ Donate: 👨🏻‍💻\nIf you like this extension and are financially able please consider buying me a coffee ☕️ to show your appreciation and support the continuation of the project.\n\n★ What's New in This Version (v1.1.47) 🆕\n\n Add Turkish translation.\n Update Russian translation.\n Update included instance lists.\n Fixed an issue causing users difficulty when selecting instances from the instance dropdown lists.\n Fixed Nitter redirects for usernames containing the word \"tweets\".\n Disable OSM redirects for Google Earth.\n Improved Reddit redirects.\n See commit history here\n\n\n★ Permissions: ℹ️\n\n Please note, access to all website navigation events ( all URLs), not just the target domains, is required to allow embedded video redirects to occur. At this time I know of no other way to achieve iframe redirects, happy to hear some suggestions on this though 🙂","weeklyDownloads":203,"type":"extension","creator":{"name":"Simon Brazell","url":"https://addons.mozilla.org/en-US/firefox/user/15274891/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/241/241463.png?modified=1622134888","width":2400,"height":1500,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/241/241463.jpg?modified=1622134888","thumbnailWidth":533,"thumbnailHeight":333,"caption":"Nitter"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/241/241464.png?modified=1622134905","width":2400,"height":1500,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/241/241464.jpg?modified=1622134905","thumbnailWidth":533,"thumbnailHeight":333,"caption":"Invidious"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/241/241465.png?modified=1622134912","width":2400,"height":1500,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/241/241465.jpg?modified=1622134912","thumbnailWidth":533,"thumbnailHeight":333,"caption":"Bibliogram"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/241/241466.png?modified=1622134928","width":2400,"height":1500,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/241/241466.jpg?modified=1622134928","thumbnailWidth":533,"thumbnailHeight":333,"caption":"OpenStreetMap"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/241/241467.png?modified=1622134936","width":2400,"height":1500,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/241/241467.jpg?modified=1622134936","thumbnailWidth":533,"thumbnailHeight":333,"caption":"Options"}],"contributionURL":"https://www.buymeacoffee.com/SimonBrazell?utm_content=product-page-contribute&utm_medium=referral&utm_source=addons.mozilla.org","averageRating":4.7925,"reviewCount":26,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/privacy-redirect/reviews/","updateDate":1618543221000},{"id":"{5173bfae-59df-4a20-a9dd-0ab3e8c82e36}","icons":{"32":"https://addons.cdn.mozilla.net/static/img/addon-icons/default-32.png?v=20210601","64":"https://addons.cdn.mozilla.net/static/img/addon-icons/default-64.png?v=20210601","128":"https://addons.cdn.mozilla.net/static/img/addon-icons/default-128.png?v=20210601"},"name":"Sci-Hub X Now!","version":"0.1.0","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3706836/sci_hub_x_now-0.1.0-an+fx.xpi","homepageURL":"https://github.com/gchenfc/sci-hub-now","supportURL":"https://github.com/gchenfc/sci-hub-now","description":"Opens the sci-hub page for the article you want to read.\nA continuation of https://addons.mozilla.org/en-US/firefox/addon/sci-hub-now/ by developer 0x01h who is no longer maintaining the original extension.","fullDescription":"When on a publisher's page for an academic article, click the sci-hub \"bird\" icon to go to the corresponding sci-hub page.\nWorks by searching for the doi anywhere on the page.\n\nAllows you to change the sci-hub domain in \"preferences\" in case sci-hub mirror changes.\n\nNote: this was originally made by 0x01h but he no longer maintains it. I have made minor modifications and will continue maintaining it until at least 2024.","weeklyDownloads":97,"type":"extension","creator":{"name":"Gerry","url":"https://addons.mozilla.org/en-US/firefox/user/16354622/"},"developers":[],"screenshots":[],"contributionURL":"","averageRating":5,"reviewCount":9,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/sci-hub-x-now/reviews/","updateDate":1610323518000},{"id":"yayanotherspeeddial@bakadev.fr","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/908/908898-32.png?modified=1614616677","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/908/908898-64.png?modified=1614616677","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/908/908898-128.png?modified=1614616677"},"name":"Yay! Another Speed dial!","version":"1.5.2.1","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3775587/yay_another_speed_dial-1.5.2.1-an+fx.xpi","homepageURL":"https://www.yayspeeddial.com/","supportURL":null,"description":"A cool and highly customizable Speed Dial focused on style and simplicity.","fullDescription":"Yay! Another Speed dial! is an extension to replace the home page when opening the browser or a new tab.\nYou can organize your bookmarks by tabs to quickly access your favorite sites.\nA theme editor makes it possible to completely personalize your homepage as you wish!\n\nfeatures\n- Fully customize your homepage or use one of our already created themes.\n- Fully responsive design\n- Organize your bookmarks by tabs\n- Easily add the site you are visiting to one of the tabs you have created","weeklyDownloads":10,"type":"extension","creator":{"name":"Mimiste","url":"https://addons.mozilla.org/en-US/firefox/user/13536280/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/198/198155.png?modified=1622132895","width":700,"height":438,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/198/198155.jpg?modified=1622132895","thumbnailWidth":533,"thumbnailHeight":334,"caption":"Home page"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/198/198156.png?modified=1622132895","width":700,"height":438,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/198/198156.jpg?modified=1622132895","thumbnailWidth":533,"thumbnailHeight":334,"caption":"Theme editor (Page)"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/198/198157.png?modified=1622132895","width":700,"height":438,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/198/198157.jpg?modified=1622132895","thumbnailWidth":533,"thumbnailHeight":334,"caption":"Theme editor (Dials)"}],"contributionURL":"https://www.paypal.com/donate/?token=PbH2msRz-nbqfCjJzSxg38MWE619YgzqzXP3yWxU7xm8DFWg-UpUHI-SNsrG_Ddrbo7GAG&country.x=FR&locale.x=&utm_content=product-page-contribute&utm_medium=referral&utm_source=addons.mozilla.org","averageRating":4.2078,"reviewCount":59,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/yay-another-speed-dial/reviews/","updateDate":1620892533000}]} \ No newline at end of file +{"schema":6,"addons":[{"id":"uBlock0@raymondhill.net","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/607/607454-32.png?modified=mcrushed","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/607/607454-64.png?modified=mcrushed","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/607/607454-128.png?modified=mcrushed"},"name":"uBlock Origin","version":"1.36.2","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3806442/ublock_origin-1.36.2-an+fx.xpi","homepageURL":"https://github.com/gorhill/uBlock#ublock-origin","supportURL":"https://old.reddit.com/r/uBlockOrigin/","description":"Finally, an efficient wide-spectrum content blocker. Easy on CPU and memory.","fullDescription":"uBlock Origin is not an \"ad blocker\", it's a wide-spectrum content blocker with CPU and memory efficiency as a primary feature.\n\n***\n\nOut of the box, these lists of filters are loaded and enforced:\n\n- EasyList (ads)\n- Peter Lowe’s Ad server list (ads and tracking)\n- EasyPrivacy (tracking)\n- Malware domains\n\nMore lists are available for you to select if you wish:\n\n- Fanboy’s Enhanced Tracking List\n- Dan Pollock’s hosts file\n- MVPS HOSTS\n- Spam404\n- And many others\n\nAdditionally, you can point-and-click to block JavaScript locally or globally, create your own global or local rules to override entries from filter lists, and many more advanced features.\n\n***\n\nFree.\nOpen source with public license (GPLv3)\nFor users by users.\n\nIf ever you really do want to contribute something, think about the people working hard to maintain the filter lists you are using, which were made available to use by all for free.\n\n***\n\n Documentation\n Release notes\n Community support @ Reddit\n Contributors @ GitHub\n Contributors @ Crowdin","weeklyDownloads":109013,"type":"extension","creator":{"name":"Raymond Hill","url":"https://addons.mozilla.org/en-US/firefox/user/11423598/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/238/238546.png?modified=1622132421","width":1011,"height":758,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/238/238546.jpg?modified=1622132421","thumbnailWidth":533,"thumbnailHeight":400,"caption":"The popup panel: default mode"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/238/238548.png?modified=1622132423","width":1011,"height":758,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/238/238548.jpg?modified=1622132423","thumbnailWidth":533,"thumbnailHeight":400,"caption":"The dashboard: stock filter lists"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/238/238547.png?modified=1622132425","width":1011,"height":758,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/238/238547.jpg?modified=1622132425","thumbnailWidth":533,"thumbnailHeight":400,"caption":"The popup panel: default-deny mode"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/238/238549.png?modified=1622132426","width":1011,"height":758,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/238/238549.jpg?modified=1622132426","thumbnailWidth":533,"thumbnailHeight":400,"caption":"The dashboard: settings"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/238/238552.png?modified=1622132430","width":970,"height":1800,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/238/238552.jpg?modified=1622132430","thumbnailWidth":216,"thumbnailHeight":400,"caption":"The popup panel in Firefox Preview: default mode with more blocking options revealed"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/230/230370.png?modified=1622132432","width":800,"height":600,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/230/230370.jpg?modified=1622132432","thumbnailWidth":533,"thumbnailHeight":400,"caption":"The unified logger tells you all that uBO is seeing and doing"}],"contributionURL":"","averageRating":4.7676,"reviewCount":3314,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/reviews/","updateDate":1626129636000},{"id":"{b9db16a4-6edc-47ec-a1f4-b86292ed211d}","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/3/3006-32.png?modified=mcrushed","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/3/3006-64.png?modified=mcrushed","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/3/3006-128.png?modified=mcrushed"},"name":"Video DownloadHelper","version":"7.6.0","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3804074/video_downloadhelper-7.6.0-fx.xpi","homepageURL":"http://www.downloadhelper.net/","supportURL":"http://www.downloadhelper.net/support.php","description":"The easy way to download and convert Web videos from hundreds of YouTube-like sites.","fullDescription":"Video DownloadHelper is the most complete tool for extracting videos and image files from websites and saving them to your hard drive.\n\nJust surf the web as you normally do. When DownloadHelper detects embedded videos it can access for download, the toolbar icon highlights and a simple menu allows you to download files by simply clicking an item.\n\nFor instance, if you go to a YouTube page, you'll be able to download the video directly on your file system. It also works with most other popular video sites like DailyMotion, Facebook, Periscope, Vimeo, Twitch, Liveleak, Vine, UStream, Fox, Bloomberg, RAI, France 2-3, Break, Metacafe, and thousands of others.\n\nVideo DownloadHelper supports several types of streamings, making the add-on unique amongst Video downloaders: HTTP, HLS, DASH, … Whenever a site uses a non-supported streaming technology, Video DownloadHelper is able to capture the media directly from the screen and generate a video file.\n\nBesides downloading, Video DownloadHelper is also capable of making file conversions (i.e. change audio and video formats) and aggregation (combining separate audio and video into a single file). This is an upgrade feature that helps pay for the free stuff (we need to eat too). You are not compelled to use conversion for downloading videos from websites, and you can avoid picking variants marked as ADP to avoid the need for aggregation.\n\nVideo overview on how to use Video DownloadHelper: https://www.youtube.com/watch?v=mZT8yI60k_4\n\nSupport can be obtained from the dedicated support forum.\n\nPlease stay tuned by following us on Twitter (@downloadhelper), or Facebook.","weeklyDownloads":57202,"type":"extension","creator":{"name":"mig","url":"https://addons.mozilla.org/en-US/firefox/user/32479/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/25/25993.png?modified=1622132280","width":200,"height":150,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/25/25993.jpg?modified=1622132280","thumbnailWidth":200,"thumbnailHeight":150,"caption":"Video DownloadHelper"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/154/154820.png?modified=1622132280","width":327,"height":124,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/154/154820.jpg?modified=1622132280","thumbnailWidth":327,"thumbnailHeight":124,"caption":"Video DownloadHelper animated toobar icon"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/154/154824.png?modified=1622132280","width":250,"height":200,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/154/154824.jpg?modified=1622132280","thumbnailWidth":250,"thumbnailHeight":200,"caption":"Video DownloadHelper main panel"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/154/154822.png?modified=1622132280","width":361,"height":289,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/154/154822.jpg?modified=1622132280","thumbnailWidth":361,"thumbnailHeight":289,"caption":"Video DownloadHelper main panel"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/154/154826.png?modified=1622132281","width":320,"height":317,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/154/154826.jpg?modified=1622132281","thumbnailWidth":320,"thumbnailHeight":317,"caption":"Video DownloadHelper available actions"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/154/154828.png?modified=1622132281","width":293,"height":250,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/154/154828.jpg?modified=1622132281","thumbnailWidth":293,"thumbnailHeight":250,"caption":"Video DownloadHelper quality variants settings"}],"contributionURL":"","averageRating":4.279,"reviewCount":11503,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/video-downloadhelper/reviews/","updateDate":1625506245000},{"id":"jid1-MnnxcxisBPnSXQ@jetpack","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/506/506646-32.png?modified=mcrushed","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/506/506646-64.png?modified=mcrushed","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/506/506646-128.png?modified=mcrushed"},"name":"Privacy Badger","version":"2021.6.8","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3792149/privacy_badger-2021.6.8-an+fx.xpi","homepageURL":"https://privacybadger.org/","supportURL":"https://privacybadger.org/#faq","description":"Automatically learns to block invisible trackers.","fullDescription":"Privacy Badger automatically learns to block invisible trackers. Instead of keeping lists of what to block, Privacy Badger automatically discovers trackers based on their behavior.\n\nPrivacy Badger sends the Global Privacy Control signal to opt you out of data sharing and selling, and the Do Not Track signal to tell companies not to track you. If trackers ignore your wishes, Privacy Badger will learn to block them.\n\nBesides automatic tracker blocking, Privacy Badger replaces potentially useful trackers (video players, comments widgets, etc.) with click-to-activate placeholders, and removes outgoing link click tracking on Facebook and Google, with more privacy protections on the way.\n\nTo learn more, see the FAQ on Privacy Badger's homepage.","weeklyDownloads":15222,"type":"extension","creator":{"name":"EFF Technologists","url":"https://addons.mozilla.org/en-US/firefox/user/5474073/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/225/225184.png?modified=1622132341","width":1920,"height":1080,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/225/225184.jpg?modified=1622132341","thumbnailWidth":533,"thumbnailHeight":300,"caption":"Privacy Badger is a project of the Electronic Frontier Foundation"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/171/171793.png?modified=1622132342","width":700,"height":394,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/171/171793.jpg?modified=1622132342","thumbnailWidth":533,"thumbnailHeight":300,"caption":"Privacy Badger at work on the whitehouse.gov privacy policy page."}],"contributionURL":"https://www.paypal.me/SupportEFF?utm_content=product-page-contribute&utm_medium=referral&utm_source=addons.mozilla.org","averageRating":4.7886,"reviewCount":371,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/privacy-badger17/reviews/","updateDate":1623333558000},{"id":"chrome-gnome-shell@gnome.org","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/751/751081-32.png?modified=1521616823","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/751/751081-64.png?modified=1521616823","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/751/751081-128.png?modified=1521616823"},"name":"GNOME Shell integration","version":"10.1","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/898030/gnome_shell_integration-10.1-an+fx-linux.xpi","homepageURL":"https://wiki.gnome.org/Projects/GnomeShellIntegrationForChrome","supportURL":"https://bugzilla.gnome.org","description":"This extension provides integration with GNOME Shell and the corresponding extensions repository https://extensions.gnome.org","fullDescription":"You MUST install native connector for this extension to work.\n\nFor Arch Linux there is a PKGBUILD available in the AUR: https://aur.archlinux.org/packages/chrome-gnome-shell-git\n\nFor Debian, Fedora, Gentoo and Ubuntu you can install package named \"chrome-gnome-shell\".\n\nYou also can install connector manually. See https://wiki.gnome.org/Projects/GnomeShellIntegrationForChrome/Installation for install instructions.","weeklyDownloads":1308,"type":"extension","creator":{"name":"Yuri Konotopov","url":"https://addons.mozilla.org/en-US/firefox/user/12725919/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/183/183915.png?modified=1622132636","width":700,"height":438,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/183/183915.jpg?modified=1622132636","thumbnailWidth":533,"thumbnailHeight":334}],"contributionURL":"","averageRating":4.3245,"reviewCount":67,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/gnome-shell-integration/reviews/","updateDate":1521613807000},{"id":"{9350bc42-47fb-4598-ae0f-825e3dd9ceba}","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/918/918574-32.png?modified=1531770407","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/918/918574-64.png?modified=1531770407","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/918/918574-128.png?modified=1531770407"},"name":"Absolute Enable Right Click & Copy","version":"1.3.8","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/1205179/absolute_enable_right_click_copy-1.3.8-fx.xpi","homepageURL":null,"supportURL":null,"description":"Force Enable Right Click & Copy","fullDescription":"Get The Best Browsing Experience Without Limitations And Restrictions In An Online World\n\n★ Features :\n→ Remove Copy Text Protection On All Website\n→ Force Enable Right Click Button\n→ Allow Copy And Highlight\n→ Disable Annoying Dialog Message (Not Able To Copy Content On This Webpage)\n→ Re-Enable Context Menu\n→ Include \"Absolute Mode\" To Force Remove Any Type Of Protection\n\n------------------------------------------------------------------------\nIf You Like This Extension, Please Rate And Share\nMade Possible By Absolute","weeklyDownloads":1847,"type":"extension","creator":{"name":"Absolute","url":"https://addons.mozilla.org/en-US/firefox/user/13673741/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/204/204829.png?modified=1622132943","width":640,"height":400,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/204/204829.jpg?modified=1622132943","thumbnailWidth":533,"thumbnailHeight":333,"caption":"01"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/204/204830.png?modified=1622132944","width":640,"height":400,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/204/204830.jpg?modified=1622132944","thumbnailWidth":533,"thumbnailHeight":333,"caption":"02"}],"contributionURL":"","averageRating":4.5639,"reviewCount":175,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/absolute-enable-right-click/reviews/","updateDate":1547160307000},{"id":"keepassxc-browser@keepassxc.org","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/917/917354-32.png?modified=1586435702","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/917/917354-64.png?modified=1586435702","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/917/917354-128.png?modified=1586435702"},"name":"KeePassXC-Browser","version":"1.7.8.1","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3758952/keepassxc_browser-1.7.8.1-fx.xpi","homepageURL":"https://keepassxc.org/","supportURL":"https://github.com/keepassxreboot/keepassxc-browser","description":"Official browser plugin for the KeePassXC password manager (https://keepassxc.org).","fullDescription":"Official browser plugin for the KeePassXC password manager (https://keepassxc.org).\n\nThe thing computers can do best is storing information.\nYou shouldn't waste your time trying to remember and type your passwords.\nKeePassXC can store your passwords safely and auto-type them into your everyday websites and applications.","weeklyDownloads":1443,"type":"extension","creator":{"name":"KeePassXC Team","url":"https://addons.mozilla.org/en-US/firefox/user/13036987/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/197/197999.png?modified=1622132902","width":700,"height":198,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/197/197999.jpg?modified=1622132902","thumbnailWidth":533,"thumbnailHeight":151,"caption":"KeePassXC"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/234/234592.png?modified=1622132905","width":1513,"height":1047,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/234/234592.jpg?modified=1622132905","thumbnailWidth":533,"thumbnailHeight":369,"caption":"Settings page"}],"contributionURL":"https://www.paypal.me/jbevendorff?utm_content=product-page-contribute&utm_medium=referral&utm_source=addons.mozilla.org","averageRating":4.3217,"reviewCount":169,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/keepassxc-browser/reviews/","updateDate":1618234520000},{"id":"wayback_machine@mozilla.org","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/711/711438-32.png?modified=1524082823","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/711/711438-64.png?modified=1524082823","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/711/711438-128.png?modified=1524082823"},"name":"Wayback Machine","version":"1.8.6","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/929315/wayback_machine-1.8.6-an+fx.xpi","homepageURL":null,"supportURL":"http://web.archive.org","description":"Detects dead pages, 404s, DNS failures & a range of other web breakdowns, offering to show archived versions via the Internet Archive's Wayback Machine. In addition you can archive web pages, and see their most recent & first archives.","fullDescription":"Detects dead pages, 404s, DNS failures & a range of other web breakdowns, offering to show archived versions via the Internet Archive's Wayback Machine. In addition you can archive web pages, and see their most recent & first archives.\n\nIf you used No More 404s on Test Pilot, this extention is for you!","weeklyDownloads":272,"type":"extension","creator":{"name":"Internet Archive","url":"https://addons.mozilla.org/en-US/firefox/user/12373129/"},"developers":[{"name":"Mark Graham","url":"https://addons.mozilla.org/en-US/firefox/user/12835321/"}],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/182/182679.png?modified=1622132569","width":199,"height":249,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/182/182679.jpg?modified=1622132569","thumbnailWidth":199,"thumbnailHeight":249,"caption":"Save an archive or a URL to the Wayback Machine or see the first, or most recent, archive of that URL."},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/182/182680.png?modified=1622132569","width":700,"height":330,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/182/182680.jpg?modified=1622132569","thumbnailWidth":533,"thumbnailHeight":251,"caption":"If there is an archive in the Wayback Machine, of a page not available via the \"live web\" you will be shown this pop-up."}],"contributionURL":"","averageRating":3.8148,"reviewCount":107,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/wayback-machine_new/reviews/","updateDate":1524081009000},{"id":"{b7f9d2cd-d772-4302-8c3f-eb941af36f76}","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/2600/2600548-32.png?modified=b183bc03","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/2600/2600548-64.png?modified=b183bc03","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/2600/2600548-128.png?modified=b183bc03"},"name":"Privacy Redirect","version":"1.1.48","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3807896/privacy_redirect-1.1.48-an+fx.xpi","homepageURL":"https://github.com/SimonBrazell/privacy-redirect","supportURL":"https://github.com/SimonBrazell/privacy-redirect","description":"Redirects Twitter, YouTube, Instagram and more to privacy friendly alternatives.","fullDescription":"Redirects Twitter, YouTube, Instagram, & Google Maps requests to privacy friendly alternatives - Nitter, Invidious, Bibliogram, & OpenStreetMap.\n\nAllows for setting custom instances, toggling all redirects on/off and more.\n\n★ More Info: ℹ️\n\n Nitter\n Invidious\n Bibliogram\n OpenStreetMap\n\n\nThe code for this web extension is available on Github.\n\n★ Donate: 👨🏻‍💻\nIf you like this extension and are financially able please consider buying me a coffee ☕️ to show your appreciation and support the continuation of the project.\n\n★ What's New in This Version (v1.1.48) 🆕\n\n Various minor fixes and improvements, see commit history for full list.\n Thank you to everyone who submitted PRs, sorry about the delay in pushing out this update.\n\n\n★ Permissions: ℹ️\n\n Please note, access to all website navigation events ( all URLs), not just the target domains, is required to allow embedded video redirects to occur. At this time I know of no other way to achieve iframe redirects, happy to hear some suggestions on this though 🙂","weeklyDownloads":153,"type":"extension","creator":{"name":"Simon Brazell","url":"https://addons.mozilla.org/en-US/firefox/user/15274891/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/241/241463.png?modified=1622134888","width":2400,"height":1500,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/241/241463.jpg?modified=1622134888","thumbnailWidth":533,"thumbnailHeight":333,"caption":"Nitter"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/241/241464.png?modified=1622134905","width":2400,"height":1500,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/241/241464.jpg?modified=1622134905","thumbnailWidth":533,"thumbnailHeight":333,"caption":"Invidious"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/241/241465.png?modified=1622134912","width":2400,"height":1500,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/241/241465.jpg?modified=1622134912","thumbnailWidth":533,"thumbnailHeight":333,"caption":"Bibliogram"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/241/241466.png?modified=1622134928","width":2400,"height":1500,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/241/241466.jpg?modified=1622134928","thumbnailWidth":533,"thumbnailHeight":333,"caption":"OpenStreetMap"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/241/241467.png?modified=1622134936","width":2400,"height":1500,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/241/241467.jpg?modified=1622134936","thumbnailWidth":533,"thumbnailHeight":333,"caption":"Options"}],"contributionURL":"https://www.buymeacoffee.com/SimonBrazell?utm_content=product-page-contribute&utm_medium=referral&utm_source=addons.mozilla.org","averageRating":4.7321,"reviewCount":29,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/privacy-redirect/reviews/","updateDate":1625874941000},{"id":"{5173bfae-59df-4a20-a9dd-0ab3e8c82e36}","icons":{"32":"https://addons.cdn.mozilla.net/static/img/addon-icons/default-32.png?v=20210601","64":"https://addons.cdn.mozilla.net/static/img/addon-icons/default-64.png?v=20210601","128":"https://addons.cdn.mozilla.net/static/img/addon-icons/default-128.png?v=20210601"},"name":"Sci-Hub X Now!","version":"0.1.0","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3706836/sci_hub_x_now-0.1.0-an+fx.xpi","homepageURL":"https://github.com/gchenfc/sci-hub-now","supportURL":"https://github.com/gchenfc/sci-hub-now","description":"Opens the sci-hub page for the article you want to read.\nA continuation of https://addons.mozilla.org/en-US/firefox/addon/sci-hub-now/ by developer 0x01h who is no longer maintaining the original extension.","fullDescription":"When on a publisher's page for an academic article, click the sci-hub \"bird\" icon to go to the corresponding sci-hub page.\nWorks by searching for the doi anywhere on the page.\n\nAllows you to change the sci-hub domain in \"preferences\" in case sci-hub mirror changes.\n\nNote: this was originally made by 0x01h but he no longer maintains it. I have made minor modifications and will continue maintaining it until at least 2024.","weeklyDownloads":80,"type":"extension","creator":{"name":"Gerry","url":"https://addons.mozilla.org/en-US/firefox/user/16354622/"},"developers":[],"screenshots":[],"contributionURL":"","averageRating":5,"reviewCount":9,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/sci-hub-x-now/reviews/","updateDate":1610323518000},{"id":"yayanotherspeeddial@bakadev.fr","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/908/908898-32.png?modified=1614616677","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/908/908898-64.png?modified=1614616677","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/908/908898-128.png?modified=1614616677"},"name":"Yay! Another Speed dial!","version":"1.5.2.1","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3775587/yay_another_speed_dial-1.5.2.1-an+fx.xpi","homepageURL":"https://www.yayspeeddial.com/","supportURL":null,"description":"A cool and highly customizable Speed Dial focused on style and simplicity.","fullDescription":"Yay! Another Speed dial! is an extension to replace the home page when opening the browser or a new tab.\nYou can organize your bookmarks by tabs to quickly access your favorite sites.\nA theme editor makes it possible to completely personalize your homepage as you wish!\n\nfeatures\n- Fully customize your homepage or use one of our already created themes.\n- Fully responsive design\n- Organize your bookmarks by tabs\n- Easily add the site you are visiting to one of the tabs you have created","weeklyDownloads":5,"type":"extension","creator":{"name":"Mimiste","url":"https://addons.mozilla.org/en-US/firefox/user/13536280/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/198/198155.png?modified=1622132895","width":700,"height":438,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/198/198155.jpg?modified=1622132895","thumbnailWidth":533,"thumbnailHeight":334,"caption":"Home page"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/198/198156.png?modified=1622132895","width":700,"height":438,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/198/198156.jpg?modified=1622132895","thumbnailWidth":533,"thumbnailHeight":334,"caption":"Theme editor (Page)"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/198/198157.png?modified=1622132895","width":700,"height":438,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/198/198157.jpg?modified=1622132895","thumbnailWidth":533,"thumbnailHeight":334,"caption":"Theme editor (Dials)"}],"contributionURL":"https://www.paypal.com/donate/?token=PbH2msRz-nbqfCjJzSxg38MWE619YgzqzXP3yWxU7xm8DFWg-UpUHI-SNsrG_Ddrbo7GAG&country.x=FR&locale.x=&utm_content=product-page-contribute&utm_medium=referral&utm_source=addons.mozilla.org","averageRating":4.2078,"reviewCount":59,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/yay-another-speed-dial/reviews/","updateDate":1620892533000}]} \ No newline at end of file diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/bookmarkbackups/bookmarks-2021-06-09_6_s7TzJZwaS-PjhkaAVK5pJg==.jsonlz4 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/bookmarkbackups/bookmarks-2021-07-13_6_s7TzJZwaS-PjhkaAVK5pJg==.jsonlz4 similarity index 100% rename from tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/bookmarkbackups/bookmarks-2021-06-09_6_s7TzJZwaS-PjhkaAVK5pJg==.jsonlz4 rename to tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/bookmarkbackups/bookmarks-2021-07-13_6_s7TzJZwaS-PjhkaAVK5pJg==.jsonlz4 diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/broadcast-listeners.json b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/broadcast-listeners.json index 249426bb..8195e63a 100644 --- a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/broadcast-listeners.json +++ b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/broadcast-listeners.json @@ -1 +1 @@ -{"version":1,"listeners":{"remote-settings/monitor_changes":{"version":"\"1623229070533\"","sourceInfo":{"moduleURI":"resource://services-settings/remote-settings.js","symbolName":"remoteSettingsBroadcastHandler"}}}} \ No newline at end of file +{"version":1,"listeners":{"remote-settings/monitor_changes":{"version":"\"1626209888341\"","sourceInfo":{"moduleURI":"resource://services-settings/remote-settings.js","symbolName":"remoteSettingsBroadcastHandler"}}}} \ No newline at end of file diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/compatibility.ini b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/compatibility.ini index dd12549b..0d988628 100644 --- a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/compatibility.ini +++ b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/compatibility.ini @@ -1,5 +1,5 @@ [Compatibility] -LastVersion=89.0_20210531160138/20210531160138 +LastVersion=89.0.2_20210623174607/20210623174607 LastOSABI=Linux_x86_64-gcc3 LastPlatformDir=/usr/lib/firefox LastAppDir=/usr/lib/firefox/browser diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/datareporting/glean/db/data.safe.bin b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/datareporting/glean/db/data.safe.bin index 04645fa0..ad1b7666 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/datareporting/glean/db/data.safe.bin and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/datareporting/glean/db/data.safe.bin differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions.json b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions.json index 4f47584a..a9400a21 100644 --- a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions.json +++ b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions.json @@ -1 +1 @@ -{"schemaVersion":33,"addons":[{"id":"chrome-gnome-shell@gnome.org","syncGUID":"{82508f32-b0ec-4e78-bf50-dc24a1c517d8}","version":"10.1","type":"extension","loader":null,"updateURL":null,"optionsURL":"options.html","optionsType":3,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"GNOME Shell integration","description":"This extension provides integration with GNOME Shell and the corresponding extensions repository https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1542628160000,"updateDate":1623202671000,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/chrome-gnome-shell@gnome.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"GNOME Shell integration","description":"This extension provides integration with GNOME Shell and the corresponding extensions repository https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Integratsioon GNOME Shelliga","description":"See laiendus võimaldab integratsiooni GNOME Shelli ja selle laienduste hoidlaga aadressil https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["et"]},{"name":"Integracion a GNOME Shell","description":"Aquesta extension permet l'integracion a GNOME Shell e a las extensions correspondentas del depaus https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["oc"]},{"name":"GNOME Shell integration","description":"This extension provides integration with GNOME Shell and the corresponding extensions repository https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["pt-PT"]},{"name":"Integrasi Shell GNOME","description":"Ekstensi ini menyediakan integrasi dengan Shell GNOME dan repositori ekstensi yang berhubungan https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"GNOME Shell-integration","description":"Detta tillägg tillhandahåller integration med GNOME Shell och det motsvarande tilläggsförrådet https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"Integrace do GNOME Shell","description":"Toto rozšíření poskytuje integraci s GNOME Shell a shoduje se s repozitářem rozšíření https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["cs"]},{"name":"Intégration à GNOME Shell","description":"Cette extension permet l'intégration à GNOME Shell et aux extensions correspondantes du dépôt https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"GNOME Shell integráció","description":"Ez a kiterjesztés integrációt biztosít a GNOME Shell-lel, és a hozzá tartozó https://extensions.gnome.org kiterjesztéstárolóval","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"그놈 셸 확장 기능","description":"이 확장 기능은 그놈 셸 통합 기능이 있으며 관련 확장 기능 저장소는 https://extensions.gnome.org에 있습니다","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"Integrazione con GNOME Shell","description":"Questa estensione fornisce l'integrazione con GNOME Shell e il corrispondente repository delle estensioni https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"GNOME Shell-Integration","description":"Diese Erweiterung ermöglicht die Integration mit der GNOME Shell und dem dazugehörenden Erweiterungs-Repository von https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Ingegrasjon med GNOME-skallet","description":"This extension provides integration with GNOME Shell and the corresponding extensions repository https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["nb"]},{"name":"Amalachadh slige GNOMW","description":"Bheir an leudachan seo dhut amalachadh le Slige GNOME agus Shell ionad-tasgaidh nan leudachan co-cheangailte rithe https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["gd"]},{"name":"Integración de GNOME Shell","description":"Esta extensión fornece integración con GNOME SHell e o correspondente repositorio de extensións https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["gl"]},{"name":"Integració amb el GNOME Shell","description":"Aquesta extensió proporciona integració amb GNOME Shell i el corresponent dipòsit d'extensions https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"Integrácia do Shellu prostredia GNOME","description":"Toto rozšírenie poskytuje integráciu do Shellu prostredia GNOME a príslušný repozitár rozšírení https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["sk"]},{"name":"Интеграција Гномове шкољке","description":"Ово проширење обезбеђује интеграцију са Гномовом шкољком и одговарајућом ризницом проширења „https://extensions.gnome.org“","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["sr"]},{"name":"GNOME Shell integration","description":"Данное расширение добавляет интеграцию с GNOME Shell и репозиторием расширений https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"GNOME Shell integration","description":"This extension provides integration with GNOME Shell and the corresponding extensions repository https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["sl"]},{"name":"Integracija GNOME ljuske","description":"Ovo proširenje omogućuje integraciju s GNOME ljuskom i odgovarajućem repozitoriju proširenja https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["hr"]},{"name":"Gnome Shell -integraatio","description":"Tämä laajennus tarjoaa integraation Gnome Shellin ja Gnome Shellin laajennustietovaraston https://extensions.gnome.org kanssa","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"GNOME Shell integration","description":"Αυτή η επέκταση παρέχει ενσωμάτωση με το GNOME Shell και τα πρόσθετα του από το https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"Integracja z GNOME Shell","description":"To rozszerzenie dostarcza integrację z GNOME Shell i repozytorium rozszerzeń https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"Integración con GNOME Shell","description":"Esta extensión proporciona integración con GNOME Shell y el correspondiente repositorio de extensiones https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"Integração com GNOME Shell","description":"Essa extensão fornece integração com o GNOME Shell e com o repositório de extensões correspondente, o https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"Gnome-shell-integratie","description":"Deze extensie voorziet in de integratie met Gnome-shell en de bijbehorende website met extensies https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"GNOME Shell-integration","description":"Denne udvidelse giver integration med GNOME Shell og det tilhørende udvidelsesarkiv https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"GNOME Kabuk bütünleşmesi","description":"Bu uygulama, GNOME Kabuk ve buna uygun uzantı deposu olan https://extensions.gnome.org ile bütünleşme sağlar","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["tr"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"56.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1521613805000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["alarms","nativeMessaging","notifications","storage","tabs"],"origins":["https://extensions.gnome.org/","https://extensions.gnome.org/*"]},"optionalPermissions":{"permissions":["idle"],"origins":[]},"icons":{"16":"icons/GnomeLogo-16.png","48":"icons/GnomeLogo-48.png","128":"icons/GnomeLogo-128.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{}},"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/chrome-gnome-shell@gnome.org.xpi!/","location":"app-profile"},{"id":"wayback_machine@mozilla.org","syncGUID":"{bd345b14-ed21-4d32-9720-0b70258947e4}","version":"1.8.6","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Wayback Machine","description":"Reduce annoying 404 pages by automatically checking for an archived copy in the Wayback Machine.","creator":null,"homepageURL":"https://archive.org/","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1542629092000,"updateDate":1623202671000,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/wayback_machine@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"48.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1524081006000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs","activeTab","storage","webRequest","webRequestBlocking","contextMenus"],"origins":["http://*/*","https://*/*","*://*/*",""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"48":"images/icon.png","96":"images/icon@2x.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{"webRequest":{"onCompleted":[[{"incognito":null,"tabId":null,"types":["main_frame"],"urls":[""],"windowId":null},null]],"onErrorOccurred":[[{"incognito":null,"tabId":null,"types":["main_frame"],"urls":[""],"windowId":null}]]}}},"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/wayback_machine@mozilla.org.xpi!/","location":"app-profile"},{"id":"{9350bc42-47fb-4598-ae0f-825e3dd9ceba}","syncGUID":"{bfe4a8ba-fc6d-4290-b03c-272cf99e1ed1}","version":"1.3.8","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Absolute Enable Right Click & Copy","description":"Force Enable Right Click & Copy","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1542628082000,"updateDate":1623202671000,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/{9350bc42-47fb-4598-ae0f-825e3dd9ceba}.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"48.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1547160306000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs","storage","activeTab"],"origins":[""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"images/16px.png","32":"images/32px.png","48":"images/48px.png","128":"images/128px.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{}},"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/%7B9350bc42-47fb-4598-ae0f-825e3dd9ceba%7D.xpi!/","location":"app-profile"},{"id":"{5173bfae-59df-4a20-a9dd-0ab3e8c82e36}","syncGUID":"{48035ddb-f446-484e-85ac-5586066ac936}","version":"0.1.0","type":"extension","loader":null,"optionsURL":"options.html","optionsType":5,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Sci-Hub X Now!","description":"Free access to academic papers with just a single click via sci-hub!","creator":"Orçun Özdemir and Lucas Sterzinger and Gerry Chen","homepageURL":"https://github.com/gchenfc/sci-hub-now","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1602855989000,"updateDate":1623202671000,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/{5173bfae-59df-4a20-a9dd-0ab3e8c82e36}.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"48.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1610323518000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["activeTab","contextMenus","storage"],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"48":"icons/48x48.png","96":"icons/96x96.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":false,"installTelemetryInfo":{"source":"amo","sourceURL":"https://addons.mozilla.org/en-US/firefox/addon/sci-hub-x-now/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search","method":"amWebAPI"},"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/%7B5173bfae-59df-4a20-a9dd-0ab3e8c82e36%7D.xpi!/","location":"app-profile"},{"id":"{b9db16a4-6edc-47ec-a1f4-b86292ed211d}","syncGUID":"{2159952e-6d3a-4f21-affb-87baa545087c}","version":"7.4.0","type":"extension","loader":null,"updateURL":null,"optionsURL":"content/settings.html?panel=settings","optionsType":3,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1573413674000,"updateDate":1623202671000,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/{b9db16a4-6edc-47ec-a1f4-b86292ed211d}.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["en-US"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["dsb"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["is"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["hsb"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["nb"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["sk"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["sl"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["ro"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["nl"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"57.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1608112527000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs","contextMenus","nativeMessaging","webRequest","webRequestBlocking","downloads","clipboardWrite","webNavigation","notifications","storage","cookies","menus"],"origins":["","*://*.downloadhelper.net/*"]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"32":"content/images/icon-32.png","40":"content/images/icon-40.png","48":"content/images/icon-48.png","128":"content/images/icon-128.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{"webRequest":{"onHeadersReceived":[[{"incognito":null,"tabId":null,"types":null,"urls":[""],"windowId":null},["responseHeaders"]]],"onBeforeRedirect":[[{"incognito":null,"tabId":null,"types":null,"urls":[""],"windowId":null},null]],"onSendHeaders":[[{"incognito":null,"tabId":null,"types":null,"urls":[""],"windowId":null},["requestHeaders"]]],"onErrorOccurred":[[{"incognito":null,"tabId":null,"types":null,"urls":[""],"windowId":null}],[{"incognito":null,"tabId":null,"types":null,"urls":["https://*.facebook.com/video/tahoe/async/*"],"windowId":null}]],"onBeforeRequest":[[{"incognito":null,"tabId":null,"types":null,"urls":["https://*.facebook.com/video/*"],"windowId":null},["requestBody"]]]}}},"hidden":false,"installTelemetryInfo":{"source":"amo","method":"amWebAPI"},"recommendationState":{"validNotAfter":1765900527000,"validNotBefore":1608112527000,"states":["recommended"]},"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/%7Bb9db16a4-6edc-47ec-a1f4-b86292ed211d%7D.xpi!/","location":"app-profile"},{"id":"jid1-MnnxcxisBPnSXQ@jetpack","syncGUID":"{f0f2b64d-ce1c-44d4-af9f-71ce9270b90c}","version":"2021.2.2","type":"extension","loader":null,"updateURL":null,"optionsURL":"/skin/options.html","optionsType":3,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Privacy Badger","description":"Privacy Badger automatically learns to block invisible trackers.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1542628050000,"updateDate":1623202671000,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/jid1-MnnxcxisBPnSXQ@jetpack.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Privacy Badger","description":"Privacy Badger automatically learns to block invisible trackers.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["en-US"]},{"name":"Privacy Badger","description":"Privacy Badger apprend automatiquement à bloquer les traceurs invisibles.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Privacy Badger","description":"O Privacy Badger aprende automaticamente a bloquear rastreadores invisíveis.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["pt-PT"]},{"name":"Privacy Badger","description":"Privacy Badger lär sig automatiskt att blockera osynliga spårare.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"Privacy Badger","description":"Privacy Badger se automaticky učí blokovat neviditelné sledovací prvky na webových stránkách.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["cs"]},{"name":"Privacy Badger","description":"Privacy Badger автоматично навчається блокувати невидимі елементи стеження.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"«غرير الخصوصية»","description":"يتعلم «غرير الخصوصية» تلقائيا أن يحجب المتعقبات الخفية.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["ar"]},{"name":"Privata Melo","description":"Privata Melo aŭtomate lernas bloki nevideblajn spurilojn.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["eo"]},{"name":"Privacy Badger","description":"Privacy Badger는 자동으로 보이지 않는 추적기를 차단하는 법을 학습합니다.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"Privacy Badger","description":"Privacy Badger impara automaticamente a bloccare i tracker invisibili.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"Privacy Badger","description":"Privacy Badger lernt automatisch, unsichtbare Tracker zu blocken.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Privacy Badger","description":"El Privacy Badger aprèn automàticament a blocar rastrejadors invisibles.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"Privacy Badger","description":"Privacy Badger automatycznie uczy się blokować niewidoczne elementy śledzące.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"پرایوسی بجر","description":"پرایوسی بجر به صورت اتوماتیک یاد می گیرد تا ردیاب های مخفی را بلاک کند.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["fa"]},{"name":"Privacy Badger","description":"Privacy Badger oppii automaattisesti estämään näkymättömät jäljittimet.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"Privacy Badger","description":"Privacy Badger автоматично се научава да блокира невидими преследвачи.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"Privacy Badger","description":"O Privacy Badger aprende automaticamente a bloquear rastreadores invisíveis.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"Privacy Badger","description":"Privacy Badger lærer automatisk at blokere usynlige sporinger.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"Privacy Badger","description":"Privacy Badger לומד באופן אוטומטי לחסום עוקבנים בלתי נראים.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["he"]},{"name":"Privacy Badger","description":"Privacy Badger 會自動學習並阻擋不可見的追蹤器。","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"Privacy Badger","description":"Privacy Badger görünmez takipçileri engellemeyi otomatik olarak öğrenir.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"Privacy Badger","description":"Privacy Badger leert automatisch onzichtbare volgers te blokkeren.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"Privacy Badger","description":"Privacy Badger aprende automáticamente a bloquear rastreadores invisibles.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"Privacy Badger","description":"Privacy Badger автоматически учится блокировать невидимые трекеры.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"隐私獾","description":"隐私獾会自动学习去阻止不可见的追踪器。","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"52.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1612293514000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs","webNavigation","webRequest","webRequestBlocking","storage","cookies","privacy"],"origins":["http://*/*","https://*/*","https://*.facebook.com/*","http://*.facebook.com/*","https://*.messenger.com/*","http://*.messenger.com/*","*://*.facebookcorewwwi.onion/*","https://www.google.com/*","http://www.google.com/*","https://www.google.ad/*","http://www.google.ad/*","https://www.google.ae/*","http://www.google.ae/*","https://www.google.com.af/*","http://www.google.com.af/*","https://www.google.com.ag/*","http://www.google.com.ag/*","https://www.google.com.ai/*","http://www.google.com.ai/*","https://www.google.al/*","http://www.google.al/*","https://www.google.am/*","http://www.google.am/*","https://www.google.co.ao/*","http://www.google.co.ao/*","https://www.google.com.ar/*","http://www.google.com.ar/*","https://www.google.as/*","http://www.google.as/*","https://www.google.at/*","http://www.google.at/*","https://www.google.com.au/*","http://www.google.com.au/*","https://www.google.az/*","http://www.google.az/*","https://www.google.ba/*","http://www.google.ba/*","https://www.google.com.bd/*","http://www.google.com.bd/*","https://www.google.be/*","http://www.google.be/*","https://www.google.bf/*","http://www.google.bf/*","https://www.google.bg/*","http://www.google.bg/*","https://www.google.com.bh/*","http://www.google.com.bh/*","https://www.google.bi/*","http://www.google.bi/*","https://www.google.bj/*","http://www.google.bj/*","https://www.google.com.bn/*","http://www.google.com.bn/*","https://www.google.com.bo/*","http://www.google.com.bo/*","https://www.google.com.br/*","http://www.google.com.br/*","https://www.google.bs/*","http://www.google.bs/*","https://www.google.bt/*","http://www.google.bt/*","https://www.google.co.bw/*","http://www.google.co.bw/*","https://www.google.by/*","http://www.google.by/*","https://www.google.com.bz/*","http://www.google.com.bz/*","https://www.google.ca/*","http://www.google.ca/*","https://www.google.cd/*","http://www.google.cd/*","https://www.google.cf/*","http://www.google.cf/*","https://www.google.cg/*","http://www.google.cg/*","https://www.google.ch/*","http://www.google.ch/*","https://www.google.ci/*","http://www.google.ci/*","https://www.google.co.ck/*","http://www.google.co.ck/*","https://www.google.cl/*","http://www.google.cl/*","https://www.google.cm/*","http://www.google.cm/*","https://www.google.cn/*","http://www.google.cn/*","https://www.google.com.co/*","http://www.google.com.co/*","https://www.google.co.cr/*","http://www.google.co.cr/*","https://www.google.com.cu/*","http://www.google.com.cu/*","https://www.google.cv/*","http://www.google.cv/*","https://www.google.com.cy/*","http://www.google.com.cy/*","https://www.google.cz/*","http://www.google.cz/*","https://www.google.de/*","http://www.google.de/*","https://www.google.dj/*","http://www.google.dj/*","https://www.google.dk/*","http://www.google.dk/*","https://www.google.dm/*","http://www.google.dm/*","https://www.google.com.do/*","http://www.google.com.do/*","https://www.google.dz/*","http://www.google.dz/*","https://www.google.com.ec/*","http://www.google.com.ec/*","https://www.google.ee/*","http://www.google.ee/*","https://www.google.com.eg/*","http://www.google.com.eg/*","https://www.google.es/*","http://www.google.es/*","https://www.google.com.et/*","http://www.google.com.et/*","https://www.google.fi/*","http://www.google.fi/*","https://www.google.com.fj/*","http://www.google.com.fj/*","https://www.google.fm/*","http://www.google.fm/*","https://www.google.fr/*","http://www.google.fr/*","https://www.google.ga/*","http://www.google.ga/*","https://www.google.ge/*","http://www.google.ge/*","https://www.google.gg/*","http://www.google.gg/*","https://www.google.com.gh/*","http://www.google.com.gh/*","https://www.google.com.gi/*","http://www.google.com.gi/*","https://www.google.gl/*","http://www.google.gl/*","https://www.google.gm/*","http://www.google.gm/*","https://www.google.gr/*","http://www.google.gr/*","https://www.google.com.gt/*","http://www.google.com.gt/*","https://www.google.gy/*","http://www.google.gy/*","https://www.google.com.hk/*","http://www.google.com.hk/*","https://www.google.hn/*","http://www.google.hn/*","https://www.google.hr/*","http://www.google.hr/*","https://www.google.ht/*","http://www.google.ht/*","https://www.google.hu/*","http://www.google.hu/*","https://www.google.co.id/*","http://www.google.co.id/*","https://www.google.ie/*","http://www.google.ie/*","https://www.google.co.il/*","http://www.google.co.il/*","https://www.google.im/*","http://www.google.im/*","https://www.google.co.in/*","http://www.google.co.in/*","https://www.google.iq/*","http://www.google.iq/*","https://www.google.is/*","http://www.google.is/*","https://www.google.it/*","http://www.google.it/*","https://www.google.je/*","http://www.google.je/*","https://www.google.com.jm/*","http://www.google.com.jm/*","https://www.google.jo/*","http://www.google.jo/*","https://www.google.co.jp/*","http://www.google.co.jp/*","https://www.google.co.ke/*","http://www.google.co.ke/*","https://www.google.com.kh/*","http://www.google.com.kh/*","https://www.google.ki/*","http://www.google.ki/*","https://www.google.kg/*","http://www.google.kg/*","https://www.google.co.kr/*","http://www.google.co.kr/*","https://www.google.com.kw/*","http://www.google.com.kw/*","https://www.google.kz/*","http://www.google.kz/*","https://www.google.la/*","http://www.google.la/*","https://www.google.com.lb/*","http://www.google.com.lb/*","https://www.google.li/*","http://www.google.li/*","https://www.google.lk/*","http://www.google.lk/*","https://www.google.co.ls/*","http://www.google.co.ls/*","https://www.google.lt/*","http://www.google.lt/*","https://www.google.lu/*","http://www.google.lu/*","https://www.google.lv/*","http://www.google.lv/*","https://www.google.com.ly/*","http://www.google.com.ly/*","https://www.google.co.ma/*","http://www.google.co.ma/*","https://www.google.md/*","http://www.google.md/*","https://www.google.me/*","http://www.google.me/*","https://www.google.mg/*","http://www.google.mg/*","https://www.google.mk/*","http://www.google.mk/*","https://www.google.ml/*","http://www.google.ml/*","https://www.google.com.mm/*","http://www.google.com.mm/*","https://www.google.mn/*","http://www.google.mn/*","https://www.google.ms/*","http://www.google.ms/*","https://www.google.com.mt/*","http://www.google.com.mt/*","https://www.google.mu/*","http://www.google.mu/*","https://www.google.mv/*","http://www.google.mv/*","https://www.google.mw/*","http://www.google.mw/*","https://www.google.com.mx/*","http://www.google.com.mx/*","https://www.google.com.my/*","http://www.google.com.my/*","https://www.google.co.mz/*","http://www.google.co.mz/*","https://www.google.com.na/*","http://www.google.com.na/*","https://www.google.com.ng/*","http://www.google.com.ng/*","https://www.google.com.ni/*","http://www.google.com.ni/*","https://www.google.ne/*","http://www.google.ne/*","https://www.google.nl/*","http://www.google.nl/*","https://www.google.no/*","http://www.google.no/*","https://www.google.com.np/*","http://www.google.com.np/*","https://www.google.nr/*","http://www.google.nr/*","https://www.google.nu/*","http://www.google.nu/*","https://www.google.co.nz/*","http://www.google.co.nz/*","https://www.google.com.om/*","http://www.google.com.om/*","https://www.google.com.pa/*","http://www.google.com.pa/*","https://www.google.com.pe/*","http://www.google.com.pe/*","https://www.google.com.pg/*","http://www.google.com.pg/*","https://www.google.com.ph/*","http://www.google.com.ph/*","https://www.google.com.pk/*","http://www.google.com.pk/*","https://www.google.pl/*","http://www.google.pl/*","https://www.google.pn/*","http://www.google.pn/*","https://www.google.com.pr/*","http://www.google.com.pr/*","https://www.google.ps/*","http://www.google.ps/*","https://www.google.pt/*","http://www.google.pt/*","https://www.google.com.py/*","http://www.google.com.py/*","https://www.google.com.qa/*","http://www.google.com.qa/*","https://www.google.ro/*","http://www.google.ro/*","https://www.google.ru/*","http://www.google.ru/*","https://www.google.rw/*","http://www.google.rw/*","https://www.google.com.sa/*","http://www.google.com.sa/*","https://www.google.com.sb/*","http://www.google.com.sb/*","https://www.google.sc/*","http://www.google.sc/*","https://www.google.se/*","http://www.google.se/*","https://www.google.com.sg/*","http://www.google.com.sg/*","https://www.google.sh/*","http://www.google.sh/*","https://www.google.si/*","http://www.google.si/*","https://www.google.sk/*","http://www.google.sk/*","https://www.google.com.sl/*","http://www.google.com.sl/*","https://www.google.sn/*","http://www.google.sn/*","https://www.google.so/*","http://www.google.so/*","https://www.google.sm/*","http://www.google.sm/*","https://www.google.sr/*","http://www.google.sr/*","https://www.google.st/*","http://www.google.st/*","https://www.google.com.sv/*","http://www.google.com.sv/*","https://www.google.td/*","http://www.google.td/*","https://www.google.tg/*","http://www.google.tg/*","https://www.google.co.th/*","http://www.google.co.th/*","https://www.google.com.tj/*","http://www.google.com.tj/*","https://www.google.tl/*","http://www.google.tl/*","https://www.google.tm/*","http://www.google.tm/*","https://www.google.tn/*","http://www.google.tn/*","https://www.google.to/*","http://www.google.to/*","https://www.google.com.tr/*","http://www.google.com.tr/*","https://www.google.tt/*","http://www.google.tt/*","https://www.google.com.tw/*","http://www.google.com.tw/*","https://www.google.co.tz/*","http://www.google.co.tz/*","https://www.google.com.ua/*","http://www.google.com.ua/*","https://www.google.co.ug/*","http://www.google.co.ug/*","https://www.google.co.uk/*","http://www.google.co.uk/*","https://www.google.com.uy/*","http://www.google.com.uy/*","https://www.google.co.uz/*","http://www.google.co.uz/*","https://www.google.com.vc/*","http://www.google.com.vc/*","https://www.google.co.ve/*","http://www.google.co.ve/*","https://www.google.vg/*","http://www.google.vg/*","https://www.google.co.vi/*","http://www.google.co.vi/*","https://www.google.com.vn/*","http://www.google.com.vn/*","https://www.google.vu/*","http://www.google.vu/*","https://www.google.ws/*","http://www.google.ws/*","https://www.google.rs/*","http://www.google.rs/*","https://www.google.co.za/*","http://www.google.co.za/*","https://www.google.co.zm/*","http://www.google.co.zm/*","https://www.google.co.zw/*","http://www.google.co.zw/*","https://www.google.cat/*","http://www.google.cat/*","https://hangouts.google.com/*","http://hangouts.google.com/*","https://docs.google.com/*","http://docs.google.com/*",""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"icons/badger-16.png","19":"icons/badger-19.png","38":"icons/badger-38.png","48":"icons/badger-48.png","64":"icons/badger-64.png","128":"icons/badger-128.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{"webRequest":{"onBeforeRequest":[[{"incognito":null,"tabId":null,"types":null,"urls":["http://*/*","https://*/*"],"windowId":null},["blocking"]]],"onBeforeSendHeaders":[[{"incognito":null,"tabId":null,"types":null,"urls":["http://*/*","https://*/*"],"windowId":null},["requestHeaders","blocking"]],[{"incognito":null,"tabId":null,"types":null,"urls":[""],"windowId":null},["requestHeaders"]]],"onHeadersReceived":[[{"incognito":null,"tabId":null,"types":null,"urls":[""],"windowId":null},["responseHeaders","blocking"]]],"onResponseStarted":[[{"incognito":null,"tabId":null,"types":null,"urls":[""],"windowId":null},["responseHeaders"]]]}}},"hidden":false,"installTelemetryInfo":null,"recommendationState":{"validNotAfter":1770081513000,"validNotBefore":1612293513000,"states":["recommended-android","recommended"]},"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/jid1-MnnxcxisBPnSXQ@jetpack.xpi!/","location":"app-profile"},{"id":"formautofill@mozilla.org","syncGUID":"{83e890fe-16cc-459b-bbd5-c7eb1b2cf3a5}","version":"1.0.1","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Form Autofill","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1541084183000,"updateDate":1622474771000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/formautofill@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{}},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/formautofill@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"screenshots@mozilla.org","syncGUID":"{e693a1c7-6163-43ad-ac2d-896a25f333dd}","version":"39.0.1","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Firefox Screenshots","description":"Take clips and screenshots from the Web and save them temporarily or permanently.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1541084183000,"updateDate":1622474771000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/screenshots@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"57.0a1","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["activeTab","downloads","tabs","storage","notifications","clipboardWrite","contextMenus"],"origins":["","https://screenshots.firefox.com/","https://screenshots.firefox.com/*"]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{}},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/screenshots@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"webcompat-reporter@mozilla.org","syncGUID":"{c50bfe40-12f2-483e-b633-744e2561c742}","version":"1.4.2","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"WebCompat Reporter","description":"Report site compatibility issues on webcompat.com","creator":"Thomas Wisniewski ","homepageURL":"https://github.com/mozilla/webcompat-reporter","developers":null,"translators":null,"contributors":null},"visible":true,"active":false,"userDisabled":true,"appDisabled":false,"embedderDisabled":false,"installDate":1541084183000,"updateDate":1622474771000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/webcompat-reporter@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs"],"origins":[""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"icons/lightbulb.svg","32":"icons/lightbulb.svg","48":"icons/lightbulb.svg","96":"icons/lightbulb.svg","128":"icons/lightbulb.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/webcompat-reporter@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"webcompat@mozilla.org","syncGUID":"{d68069e0-85d1-41a9-a0ce-6626a27d5361}","version":"22.2.0","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Web Compatibility Interventions","description":"Urgent post-release fixes for web compatibility.","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1541084183000,"updateDate":1622474771000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/webcompat@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"59.0b5","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs","webNavigation","webRequest","webRequestBlocking"],"origins":[""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{"webRequest":{"onBeforeRequest":[[{"incognito":null,"tabId":null,"types":["script"],"urls":["*://webcompat-addon-testbed.herokuapp.com/shims_test.js","*://example.com/browser/browser/extensions/webcompat/tests/browser/shims_test.js","*://example.com/browser/browser/extensions/webcompat/tests/browser/shims_test_2.js","*://example.com/browser/browser/extensions/webcompat/tests/browser/shims_test_3.js","*://cdn.adsafeprotected.com/iasPET.1.js","*://static.adsafeprotected.com/vans-adapter-google-ima.js","*://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js","*://auth.9c9media.ca/auth/main.js","*://libs.coremetrics.com/eluminate.js","*://connect.facebook.net/*/sdk.js*","*://connect.facebook.net/*/all.js*","*://www.google-analytics.com/analytics.js","*://www.google-analytics.com/plugins/ua/ec.js","*://www.google-analytics.com/gtm/js","*://www.googletagmanager.com/gtm.js","*://ssl.google-analytics.com/ga.js","*://www.googletagservices.com/tag/js/gpt.js","*://securepubads.g.doubleclick.net/tag/js/gpt.js","*://securepubads.g.doubleclick.net/gpt/pubads_impl_*.js","*://s0.2mdn.net/instream/html5/ima3.js","*://imasdk.googleapis.com/js/sdkloader/ima3.js","*://id.rambler.ru/rambler-id-helper/auth_events.js","*://media.richrelevance.com/rrserver/js/1.2/p13n.js"],"windowId":null},["blocking"]]],"onBeforeSendHeaders":[[{"incognito":null,"tabId":null,"types":null,"urls":["*://webcompat-addon-testbed.herokuapp.com/*"],"windowId":null},["blocking","requestHeaders"]],[{"incognito":null,"tabId":null,"types":null,"urls":["*://*.att.tv/*"],"windowId":null},["blocking","requestHeaders"]],[{"incognito":null,"tabId":null,"types":null,"urls":["*://steamcommunity.com/chat*"],"windowId":null},["blocking","requestHeaders"]],[{"incognito":null,"tabId":null,"types":null,"urls":["https://watch.sling.com/*","https://www.sling.com/*"],"windowId":null},["blocking","requestHeaders"]],[{"incognito":null,"tabId":null,"types":null,"urls":["https://www.mobilesuica.com/*"],"windowId":null},["blocking","requestHeaders"]],[{"incognito":null,"tabId":null,"types":null,"urls":["*://*.bancosantander.es/*","*://*.gruposantander.es/*","*://*.santander.co.uk/*","*://bob.santanderbank.com/*","*://rolb.santanderbank.com/*"],"windowId":null},["blocking","requestHeaders"]],[{"incognito":null,"tabId":null,"types":null,"urls":["*://*.spectrum.net/voice/*"],"windowId":null},["blocking","requestHeaders"]]],"onHeadersReceived":[[{"incognito":null,"tabId":null,"types":null,"urls":["https://ads-us.rd.linksynergy.com/as.php*"],"windowId":null},["blocking","responseHeaders"]]]}}},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/webcompat@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"doh-rollout@mozilla.org","syncGUID":"{93ddb028-d448-4733-9438-c152fb327f1e}","version":"2.0.0","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"DoH Roll-Out","description":"This used to be a Mozilla add-on that supported the roll-out of DoH, but now only exists as a stub to enable migrations.","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1579529887000,"updateDate":1622474771000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/doh-rollout@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"72.0a1","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/doh-rollout@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"pictureinpicture@mozilla.org","syncGUID":"{8e1b1da0-727b-4310-a91a-6ecfba0cdeb5}","version":"1.0.0","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Picture-In-Picture","description":"Fixes for web compatibility with Picture-in-Picture","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1622474771000,"updateDate":1622474771000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/pictureinpicture@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"88.0a1","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/pictureinpicture@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"bing@search.mozilla.org","syncGUID":"{676e9101-35f2-43c8-9885-420824540115}","version":"1.3","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Bing","description":"Microsoft Bing","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1569709370787,"updateDate":1568839541000,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/bing/","location":"app-builtin"},{"id":"google@search.mozilla.org","syncGUID":"{d61f55d6-06fb-4158-bcb7-9d36dec4e9b2}","version":"1.1","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1569709370845,"updateDate":1568839541000,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["b-1-d"]},{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["b-1-e"]},{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["b-d"]},{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["b-e"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/google/","location":"app-builtin"},{"id":"wikipedia@search.mozilla.org","syncGUID":"{f3d5848e-8a3f-458b-808c-e606c35c0620}","version":"1.1","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Wikipedia (en)","description":"Wikipedia, the Free Encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1569709371001,"updateDate":1568839541000,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Wikipedia (en)","description":"Wikipedia, the Free Encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Wikipedija (hr)","description":"Wikipedija, slobodna enciklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hr"]},{"name":"Wikipedia (fi)","description":"Wikipedia (fi), vapaa tietosanakirja","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"Wikipedia (hy)","description":"Վիքիփեդիա՝ ազատ հանրագիտարան","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hy"]},{"name":"Уикипедия (kk)","description":"Уикипедия (kk)","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["kk"]},{"name":"Вікіпедыя (be)","description":"Вікіпедыя, свабодная энцыклапедыя","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["be"]},{"name":"위키백과 (ko)","description":"Wikipedia, the free encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["kr"]},{"name":"Wikipedia (ro)","description":"Wikipedia, enciclopedia liberă","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ro"]},{"name":"Wikipedia (bs)","description":"Slobodna enciklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["bs"]},{"name":"Wikipedia (pt)","description":"Wikipédia, a enciclopédia livre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["pt"]},{"name":"Vikipetã (gn)","description":"Vikipetã, opaite tembikuaa hekosãsóva renda","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["gn"]},{"name":"વિકિપીડિયા (gu)","description":"વીકીપીડિયા, મુક્ત એનસાયક્લોપીડિયા","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["gu"]},{"name":"Wikipedia (el)","description":"Βικιπαίδεια, η ελεύθερη εγκυκλοπαίδεια","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"Wikipedia (es)","description":"Wikipedia, la enciclopedia libre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"ויקיפדיה","description":"ויקיפדיה","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["he"]},{"name":"Wikipedia (da)","description":"Wikipedia, den frie encyklopædi","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"Wikipedia (tr)","description":"Vikipedi, özgür ansiklopedi","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"Wikipedija (hsb)","description":"Wikipedija, swobodna encyklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hsb"]},{"name":"Wikipedy (fy)","description":"De fergese ensyklopedy","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fy-NL"]},{"name":"विकिपीडिया (ne)","description":"विकिपिडिया एक स्वतन्त्र विश्वकोष","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ne"]},{"name":"Wikipedia (nl)","description":"De vrije encyclopedie","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"Wikipedia (ja)","description":"Wikipedia - フリー百科事典","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"Vikipeedia (et)","description":"Vikipeedia, vaba entsüklopeedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["et"]},{"name":"Wikipèdia (oc)","description":"Wikipèdia, l'enciclopèdia liura","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["oc"]},{"name":"Wicipedia (cy)","description":"Wicipedia, Y Gwyddioniadur Rhydd","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["cy"]},{"name":"వికీపీడియా (te)","description":"వికీపీడియా (te)","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["te"]},{"name":"Wikipédia (fr)","description":"Wikipédia, l'encyclopédie libre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Wikipedia (tl)","description":"Wikipedia, ang malayang ensiklopedya","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["tl"]},{"name":"维基百科","description":"维基百科,自由的百科全书","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"Wikipedia (lij)","description":"Wikipedia, l'enciclopedia libera","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["lij"]},{"name":"វីគីភីឌា (km)","description":"វីគីភីឌា សព្វ​វចនា​ធិប្បាយ​សេរី","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["km"]},{"name":"Уикипедия (bg)","description":"Уикипедия, свободната енциклоподия","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"Wikipedia (id)","description":"Wikipedia, ensiklopedia bebas","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"Wikipedia (pa)","description":"ਵਿਕਿਪੀਡਿਆ, ਮੁਫ਼ਤ/ਮੁਕਤ ਸ਼ਬਦਕੋਸ਼","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["pa"]},{"name":"উইকিপিডিয়া (bn)","description":"উইকিপিডিয়া, মুক্ত বিশ্বকোষ","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["bn"]},{"name":"Wikipedia (eu)","description":"Wikipedia, entziklopedia askea","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["eu"]},{"name":"Wikipedie (cs)","description":"Wikipedia, svobodná encyclopedie","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["cz"]},{"name":"Wikipédia (hu)","description":"Wikipedia, a szabad enciklopédia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"Wikipedia (kn)","description":"Wikipedia, the free encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["kn"]},{"name":"Wikipedia (is)","description":"Wikipedia, the free encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["is"]},{"name":"Вікіпедія (uk)","description":"Вікіпедія, вільна енциклопедія","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"Wikipedia (kab)","description":"Wikipedia, tasanayt tilellit","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["kab"]},{"name":"Wikipedia (zh)","description":"維基百科,自由的百科全書","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"ویکیپیڈیا (ur)","description":"ویکیپیڈیا آزاد دائرۃ المعارف","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ur"]},{"name":"Vikipedio (eo)","description":"Vikipedio, la libera enciklopedio","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["eo"]},{"name":"Wikipedia (si)","description":"Wikipedia, the free encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["si"]},{"name":"ويكيبيديا (ar)","description":"ويكيبيديا (ar)","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ar"]},{"name":"Wikipedia (vi)","description":"Wikipedia, bách khoa toàn thư mở","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["vi"]},{"name":"ვიკიპედია (ka)","description":"ვიკიპედია, თავისუფალი ენციკლოპედია","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ka"]},{"name":"Uicipeid (gd)","description":"Wikipedia, An leabhar mòr-eòlais","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["gd"]},{"name":"Wikipedia (it)","description":"Wikipedia, l'enciclopedia libera","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"Vikipediya (uz)","description":"Vikipediya, ochiq ensiklopediya","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["uz"]},{"name":"Wikipedia (lt)","description":"Vikipedija, laisvoji enciklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["lt"]},{"name":"Wikipedia (sq)","description":"Wikipedia, enciklopedia e lirë","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sq"]},{"name":"Vicipéid (ga)","description":"Vicipéid, an Chiclipéid Shaor","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ga-IE"]},{"name":"विकिपीडिया (hi)","description":"विकिपीडिया (हिन्दी)","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hi"]},{"name":"Vikipedeja (ltg)","description":"Vikipēdija, breivuo eņciklopedeja","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ltg"]},{"name":"விக்கிப்பீடியா (ta)","description":"விக்கிப்பீடியா (ta)","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ta"]},{"name":"Vikipediya (az)","description":"Vikipediya, açıq ensiklopediya","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["az"]},{"name":"Википедија (mk)","description":"Википедија, слободната енциклопедија","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["mk"]},{"name":"วิกิพีเดีย","description":"วิกิพีเดีย สารานุกรมเสรี","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["th"]},{"name":"Wikipedia (de)","description":"Wikipedia, die freie Enzyklopädie","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Wikipedija (dsb)","description":"Wikipedija, lichotna encyklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["dsb"]},{"name":"विकिपीडिया (mr)","description":"विकिपीडिया, मोफत माहितीकोष","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["mr"]},{"name":"Wikipedia (ast)","description":"La enciclopedia llibre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ast"]},{"name":"Wikipedia (my)","description":"အခမဲ့လွတ်လပ်စွယ်စုံကျမ်း","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["my"]},{"name":"Wikipedia (rm)","description":"Vichipedia, l'enciclopedia libra","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["rm"]},{"name":"Wikipedia (nn)","description":"Wikipedia, det frie oppslagsverket","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["NN"]},{"name":"Wikipedia (wo)","description":"Wikipedia, Jimbulang bu Ubbeeku bi","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["wo"]},{"name":"Wikipedia (gl)","description":"Wikipedia, a enciclopedia libre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["gl"]},{"name":"Viquipèdia (ca)","description":"L'enciclopèdia lliure","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"Wikipédia (sk)","description":"Wikipédia, slobodná a otvorená encyklopédia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sk"]},{"name":"Википедија (sr)","description":"Претрага Википедије на српском језику","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sr"]},{"name":"Wikipedia (af)","description":"Wikipedia, die vrye ensiklopedie","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["af"]},{"name":"ویکی‌پدیا (fa)","description":"ویکی‌پدیا، دانشنامهٔ آزاد","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fa"]},{"name":"Wikipedia (ms)","description":"Wikipedia, ensiklopedia bebas","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ms"]},{"name":"Wikipedia (ia)","description":"Wikipedia, le encyclopedia libere","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ia"]},{"name":"Wikipedia (no)","description":"Wikipedia, den frie encyklopedi","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["NO"]},{"name":"Википедия (ru)","description":"Википедия, свободная энциклопедия","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"Wikipedia (br)","description":"Wikipedia, an holloueziadur digor","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["br"]},{"name":"Wikipedia (pl)","description":"Wikipedia, wolna encyklopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"Вікіпэдыя (be-tarask)","description":"Вікіпэдыя, вольная энцыкляпэдыя","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["be-tarask"]},{"name":"Wikipedia (sv)","description":"Wikipedia, den fria encyklopedin","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sv-SE"]},{"name":"ວິກິພີເດຍ (lo)","description":"ວິກິພີເດຍ, ສາລານຸກົມເສລີ","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["lo"]},{"name":"Wikipedija (sl)","description":"Wikipedija, prosta enciklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sl"]},{"name":"Vikipēdija","description":"Vikipēdija, brīvā enciklopēdija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["lv"]},{"name":"Biquipedia (an)","description":"A enciclopedia Libre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["an"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/wikipedia/","location":"app-builtin"},{"id":"ddg@search.mozilla.org","syncGUID":"{d266c863-eb3a-4a16-a017-a58dde5b3a76}","version":"1.1","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"DuckDuckGo","description":"Search DuckDuckGo","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1569709371053,"updateDate":1568839541000,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/ddg/","location":"app-builtin"},{"id":"ebay@search.mozilla.org","syncGUID":"{caa1cea7-55c5-4750-b65f-55ced3f5309f}","version":"1.3","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1594071183499,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ie"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ch"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["at"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["au"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["be"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fr"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/ebay/","location":"app-builtin"},{"id":"firefox-alpenglow@mozilla.org","syncGUID":"{c545409f-983c-4328-95e3-6830f10e078a}","version":"1.4","type":"theme","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Firefox Alpenglow","description":"Use a colorful appearance for buttons, menus, and windows.","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":false,"userDisabled":true,"appDisabled":false,"embedderDisabled":false,"installDate":1604968137971,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"userPermissions":null,"optionalPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://builtin-themes/alpenglow/","location":"app-builtin"},{"id":"default-theme@mozilla.org","syncGUID":"{cd4717b9-58bd-4ede-90e6-a591641227b2}","version":"1.2","type":"theme","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"System theme","description":"Follow the operating system setting for buttons, menus, and windows.","creator":"Mozilla","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1604968444292,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"userPermissions":null,"optionalPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://default-theme/","location":"app-builtin"},{"id":"firefox-compact-dark@mozilla.org","syncGUID":"{ab1c995c-3f5c-48bc-90c2-b62ac992bd5f}","version":"1.2","type":"theme","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Dark","description":"A theme with a dark color scheme.","creator":"Mozilla","developers":null,"translators":null,"contributors":null},"visible":true,"active":false,"userDisabled":true,"appDisabled":false,"embedderDisabled":false,"installDate":1604968444295,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"userPermissions":null,"optionalPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://builtin-themes/dark/","location":"app-builtin"},{"id":"firefox-compact-light@mozilla.org","syncGUID":"{a4e3a0da-ee94-4b52-b816-ea6d3195739b}","version":"1.2","type":"theme","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Light","description":"A theme with a light color scheme.","creator":"Mozilla","developers":null,"translators":null,"contributors":null},"visible":true,"active":false,"userDisabled":true,"appDisabled":false,"embedderDisabled":false,"installDate":1604968444296,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"userPermissions":null,"optionalPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://builtin-themes/light/","location":"app-builtin"},{"id":"amazon@search.mozilla.org","syncGUID":"{7581a3a9-689a-4c01-986d-d9d98832ff5e}","version":"1.9","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Amazon.com.au","description":"Amazon.com.au Search","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1618002157570,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Amazon.com.au","description":"Amazon.com.au Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["au"]},{"name":"Amazon.ca","description":"Amazon.ca Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"Amazon.co.uk","description":"Amazon.co.uk Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en-GB-adm"]},{"name":"Amazon.es","description":"Amazon.es","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["spain"]},{"name":"Amazon.de","description":"Amazon.de Suche","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["de-adm"]},{"name":"Amazon.fr","description":"Recherche Amazon.fr","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["france"]},{"name":"Amazon.nl","description":"Amazon.nl Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"Amazon.co.uk","description":"Amazon.co.uk Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en-GB"]},{"name":"Amazon.co.jp","description":"Amazon.co.jp Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["jp"]},{"name":"Amazon.se","description":"Amazon.se","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sweden"]},{"name":"Amazon.it","description":"Ricerca Amazon.it","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"Amazon.de","description":"Amazon.de Suche","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Amazon.in","description":"Amazon.in Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["in"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/amazon/","location":"app-builtin"},{"id":"{b7f9d2cd-d772-4302-8c3f-eb941af36f76}","syncGUID":"{e26c6766-736d-40be-b9b8-c7da7cd75a9e}","version":"1.1.47","type":"extension","loader":null,"updateURL":null,"optionsURL":"pages/options/options.html","optionsType":5,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Privacy Redirect","description":"Redirects Twitter, YouTube, Instagram and more to privacy friendly alternatives.","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1601768229000,"updateDate":1623205118127,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/{b7f9d2cd-d772-4302-8c3f-eb941af36f76}.xpi","skinnable":false,"sourceURI":"https://addons.cdn.mozilla.net/user-media/addons/2600548/privacy_redirect-1.1.47-an+fx.xpi?filehash=sha256%3Af39d53581a265f585c38f6fbfb1f2e2d1d840922453bf75cf193fe089236707b","releaseNotesURI":"https://addons.mozilla.org/versions/updateInfo/5216693/en-US/","softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Privacy Redirect","description":"Redirects Twitter, YouTube, Instagram and more to privacy friendly alternatives.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Privacy Redirect","description":"Redirige les requêtes les demandes Twitter, YouTube, Instagram et Google Maps vers des alternatives respectueuses de la vie privée. pour Twitter, YouTube, Instagram et Google Maps vers des alternatives respectueuses de la vie privée.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Privacy Redirect","description":"Leitet Anfragen von Twitter, YouTube, Instagram & Google Maps auf datenschutzfreundliche Alternativen weiter.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Privacy Redirect","description":"将 Twitter、YouTube、Instagram 和 Google Maps 重定向至尊重隐私的替代品","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"Privacy Redirect","description":"Przekierowuje serwisy takie jak: Twitter, YouTube, Instagram i Google Maps do alternatyw sprzyjających prywatności.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"Privacy Redirect","description":"Перенаправляет запросы к Twitter, YouTube, Instagram и Google Maps на альтернативные сервисы, дружелюбные к приватности.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"Privacy Redirect","description":"Redirige las solicitudes de Twitter, Youtube, Instagram, Google Maps, Reddit y la Búsqueda de Google a alternativas que respetan su privacidad.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"Privacy Redirect","description":"Twitter, YouTube, Instagram, Google Haritalar, Reddit & Google Arama bağlantılarını gizlilik dostu alternatiflerine yönlendirir.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["tr"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"67.0","maxVersion":null}],"targetPlatforms":[],"signedState":2,"signedDate":1618543221000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["storage","webRequest","webRequestBlocking"],"origins":["","*://twitter.com/*","*://www.twitter.com/*","*://mobile.twitter.com/*","*://pbs.twimg.com/*","*://video.twimg.com/*","*://invidious.snopyta.org/*","*://invidious.xyz/*","*://invidious.kavin.rocks/*","*://tube.connect.cafe/*","*://invidious.zapashcanon.fr/*","*://invidiou.site/*","*://vid.mint.lgbt/*","*://invidious.site/*","*://yewtu.be/*","*://invidious.tube/*","*://invidious.silkky.cloud/*","*://invidious.fdn.fr/*","*://invidious.himiko.cloud/*","*://inv.skyn3t.in/*","*://tube.incognet.io/*","*://invidious.tinfoil-hat.net/*","*://invidious.namazso.eu/*","*://vid.puffyan.us/*","*://dev.viewtube.io/*","*://invidious.048596.xyz/*","*://fz253lmuao3strwbfbmx46yu7acac2jz27iwtorgmbqlkurlclmancad.onion/*","*://qklhadlycap4cnod.onion/*","*://c7hqkpkpemu6e7emz5b4vyz7idjgdvgaaa3dyimmeojqbgpea3xqjoid.onion/*","*://w6ijuptxiku4xpnnaetxvnkc5vqcdu7mgns2u77qefoixi63vbvnpnqd.onion/*"]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"assets/images/icon16.png","32":"assets/images/icon32.png","48":"assets/images/icon48.png","128":"assets/images/icon128.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"amo","sourceURL":"https://addons.mozilla.org/en-US/firefox/addon/privacy-redirect/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search","method":"amWebAPI"},"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/%7Bb7f9d2cd-d772-4302-8c3f-eb941af36f76%7D.xpi!/","location":"app-profile"},{"id":"keepassxc-browser@keepassxc.org","syncGUID":"{5c925fa7-bdb3-44bc-b792-b5912759722a}","version":"1.7.8.1","type":"extension","loader":null,"updateURL":null,"optionsURL":"options/options.html","optionsType":3,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"KeePassXC-Browser","description":"KeePassXC integration for modern web browsers","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1606947306641,"updateDate":1623205118413,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/keepassxc-browser@keepassxc.org.xpi","skinnable":false,"sourceURI":"https://addons.cdn.mozilla.net/user-media/addons/917354/keepassxc_browser-1.7.8.1-fx.xpi?filehash=sha256%3Ac091084b5ac5acbf4652bd60033a69e10d1b1e3e5ff3dd1f68fc62afea636b3d","releaseNotesURI":"https://addons.mozilla.org/versions/updateInfo/5214592/en-US/","softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"KeePassXC-Browser","description":"KeePassXC integration for modern web browsers","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"KeePassXC-Browser","description":"モダンなウェブブラウザーのための KeePassXC 統合","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"KeePassXC-Browser","description":"KeePassXC integratsioon moodsatele brauseritele","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["et"]},{"name":"KeePassXC-Browser","description":"Integração KeepassXC para os navegadores modernos","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["pt-PT"]},{"name":"KeePassXC-Browser","description":"KeePassXC интеграция за съвременните уеб браузъри","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"KeePassXC-Browser","description":"Intégration de KeePassXC pour les navigateurs Web modernes","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"KeePassXC-Browser","description":"Integrasi KeePassXC untuk peramban web modern","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"KeePassXC-Browser","description":"KeePassXC integration för moderna webbläsare","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"KeePassXC-Browser","description":"Napojení na KeePassXC pro moderní webové prohlížeče","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["cs"]},{"name":"KeePassXC-Browser","description":"KeePassXC integráció a modern webböngészőkhöz","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"KeePassXC-Browser","description":"Сполучення KeePassXC з сучасними переглядачами тенет","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"KeePassXC-Browser","description":"현대적인 웹 브라우저용 KeePassXC 통합","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"KeePassXC-Browser","description":"Integrazione di KeePassXC per browser web moderni","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"KeePassXC-Browser","description":"KeePassXC-Integration für moderne Webbrowser","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"KeePassXC-Browser","description":"KeePassXC 与现代 Web 浏览器的集成","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"KeePassXC-Browser","description":"Интеграция KeePassXC в современные веб-браузеры","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"KeePassXC-Browser","description":"Integracja KeePassXC z nowoczesnymi przeglądarkami internetowymi","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"KeePassXC-Browser","description":"KeePassXC integratio pro interretialibus navigatoribus modernis","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["la"]},{"name":"KeePassXC-Browser","description":"KeePassXC integracija za sodobne spletne brskalnike","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["sl"]},{"name":"KeePassXC-Browser","description":"KeePassXC-integraatio moderneille nettiselaimille","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"KeePassXC-Browser","description":"KeePassXC integrare pentru browsere web moderne","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["ro"]},{"name":"KeePassXC-Browser","description":"Integração KeepassXC para os navegadores modernos","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["pt"]},{"name":"KeePassXC-Browser","description":"Ενσωμάτωση KeePassXC για σύγχρονα προγράμματα περιήγησης ιστού","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"KeePassXC-Browser","description":"Integración de KeePassXC para navegadores web modernos","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"KeePassXC-Browser","description":"Integração ao KeePassXC para navegadores modernos","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"KeePassXC-Browser","description":"KeePassXC 與現代瀏覽器的整合","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"KeePassXC-Browser","description":"KeePassXC-integrering til moderne webbrowsere","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"KeePassXC-Browser","description":"Modern web tarayıcıları için KeePassXC bütünleşmesi","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"KeePassXC-Browser","description":"KeePassXC-integratie voor moderne webbrowsers","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"KeePassXC-Browser","description":"KeePassXC-integratie voor moderne webbrowsers","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["nl-NL"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"67.0","maxVersion":null}],"targetPlatforms":[],"signedState":2,"signedDate":1618234520000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["activeTab","contextMenus","clipboardWrite","nativeMessaging","notifications","storage","tabs","webNavigation","webRequest","webRequestBlocking"],"origins":["https://*/*","http://*/*","https://api.github.com/",""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"icons/keepassxc.svg","48":"icons/keepassxc.svg","64":"icons/keepassxc.svg","96":"icons/keepassxc.svg","128":"icons/keepassxc.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"amo","sourceURL":"https://addons.mozilla.org/en-US/firefox/addon/keepassxc-browser/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search","method":"amWebAPI"},"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/keepassxc-browser@keepassxc.org.xpi!/","location":"app-profile"},{"id":"yayanotherspeeddial@bakadev.fr","syncGUID":"{3095ecca-6e6a-42d5-b1d5-6778d84c2a99}","version":"1.5.2.1","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Yay! Another Speed dial!","description":"A cool and highly customizable Speed Dial focused on style and simplicity.","creator":"Loïc","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1552785444000,"updateDate":1623205118781,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/yayanotherspeeddial@bakadev.fr.xpi","skinnable":false,"sourceURI":"https://addons.cdn.mozilla.net/user-media/addons/908898/yay_another_speed_dial-1.5.2.1-an+fx.xpi?filehash=sha256%3A47aad510b271a081d0886e0ba046a9f9005049f1fc1f5c51234579a587904b56","releaseNotesURI":"https://addons.mozilla.org/versions/updateInfo/5231227/en-US/","softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Yay! Another Speed dial!","description":"A cool and highly customizable Speed Dial focused on style and simplicity.","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Yay! Another Speed dial!","description":"Un superbe Speed Dial, complètement personnalisable, concentré sur le style et la simplicité.","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Yay! Another Speed dial!","description":"Egy rendkívül jól testreszabható gyorshívó, amit a stílus és az egyszerűség jellemez.","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"Yay! Another Speed dial!","description":"Eine coole und höchst anpassbare Speed Dial Erweiterung, fokussiert auf Aussehen und Einfachheit.","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Yay! Another Speed dial!","description":"一个聚焦于风格、简洁,高自定义性的超酷快速启动附加组件。","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"Yay! Another Speed dial!","description":"Классная Экспресс-панель, широко кастомизируемая, простая и стильная.","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"Yay! Another Speed dial!","description":"一個聚焦於風格、簡潔,高自訂性的超酷快速啟動附加元件。","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"Yay! Another Speed dial!","description":"Un addon con página de accessos directos que se enfoca en verse bien y ser altamente configurable pero facil de usar.","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["es"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"59.0","maxVersion":null}],"targetPlatforms":[],"signedState":2,"signedDate":1620892532000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["storage","contextMenus","tabs","downloads","bookmarks","unlimitedStorage"],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"48":"icons/icon.png","96":"icons/icon@2x.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/yayanotherspeeddial@bakadev.fr.xpi!/","location":"app-profile"},{"id":"uBlock0@raymondhill.net","syncGUID":"{f70fa12e-f672-41cf-b96c-cfa7eeecb76e}","version":"1.35.2","type":"extension","loader":null,"updateURL":null,"optionsURL":"dashboard.html","optionsType":3,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"uBlock Origin","description":"Finally, an efficient blocker. Easy on CPU and memory.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1542627999000,"updateDate":1623248210304,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/uBlock0@raymondhill.net.xpi","skinnable":false,"sourceURI":"https://addons.cdn.mozilla.net/user-media/addons/607454/ublock_origin-1.35.2-an+fx.xpi?filehash=sha256%3A8eccfa436bc5852b91ddb9628dca4bfd0ff5d2a302f2e9e595d801fa228c3975","releaseNotesURI":"https://addons.mozilla.org/versions/updateInfo/5224615/en-US/","softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"uBlock Origin","description":"Finally, an efficient blocker. Easy on CPU and memory.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"uBlock Origin","description":"Finally, an efficient blocker. Easy on CPU and memory.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["oc"]},{"name":"uBlock Origin","description":"Un bloqueur de nuisances efficace, qui ménagera votre processeur et votre mémoire vive.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"uBlock Origin","description":"Finalmente, um bloqueador eficiente. Leve na CPU e memória.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["pt-PT"]},{"name":"uBlock Origin","description":"高効率ブロッカーが遂に登場。CPUとメモリーの負担を抑えます。","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"uBlock Origin","description":"మొత్తానికి RAM ఇంకా CPU పై తేలికయిన, ఒక సమర్థవంతమైన నిరోధిని.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["te"]},{"name":"uBlock Origin","description":"Akhirnya, pemblokir iklan yang efisien. Ringan penggunaan CPU dan memori.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"uBlock Origin","description":"অবশেষে, একটি দক্ষ বিজ্ঞাপন রোধক। সিপিইউ এবং মেমরি সহায়ক।","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["bn"]},{"name":"uBlock Origin","description":"Lõpuks on valminud tõhus blokeerija. Protsessori- ja mälusõbralik.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["et"]},{"name":"uBlock Origin","description":"Einlik, in effisjinte adblocker. Brûkt hast gjin prosessorkrêft of ûnthâld.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["fy"]},{"name":"uBlock Origin","description":"Behingoz, blokeatzaile eraginkor bat. PUZ eta memorian arina.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["eu"]},{"name":"uBlock Origin","description":"Äntligen en effektiv blockerare. Snäll mot både processor och minne.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"uBlock Origin","description":"Konečně efektivní blokovač. Nezatěžuje CPU a paměť.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["cs"]},{"name":"uBlock Origin","description":"Най-накрая, ефективен блокер. Щадящ процесора и паметта.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"uBlock Origin","description":"ಕೊನೆಗೂ, ಒಂದು ದಕ್ಷ ನಿರ್ಬಂಧಕ. ಮಿತವಾದ ಸಿಪಿಯೂ ಹಾಗು ಮೆಮೊರಿ ಬಳಕೆ.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["kn"]},{"name":"uBlock Origin","description":"Ефективний блокувальник реклами таки з’явився. Не навантажує процесор та пам'ять.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"uBlock Origin","description":"Végre egy hatékony reklám- és követésblokkoló böngészőkhöz, amely kíméletes a processzorral és a memóriával.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"uBlock Origin","description":"آخر کار، ایک مؤثر اشتہار کو روکنے والا، یہ کم cpu اور میموری لیتا ہے.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ur"]},{"name":"uBlock Origin","description":"Finfine rendimenta reklamoblokilo. Afabla por ĉefprocesoro kaj memoro.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["eo"]},{"name":"uBlock Origin","description":"이 부가 기능은 효율적인 차단기입니다. CPU와 메모리에 주는 부담이 적습니다.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"uBlock Origin","description":"وأخيراً, مانع اعلانات كفوء. خفيف على المعالج و الذاكرة.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ar"]},{"name":"uBlock Origin","description":"Finalmente, un blocker efficiente. Leggero sulla CPU e sulla memoria.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"uBlock Origin","description":"Pagaliau, efektyvus blokatorius, neapkraunantis nei procesoriaus, nei darbinės atminties.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["lt"]},{"name":"uBlock Origin","description":"आख़िरकार, क्रोमियम-बेस्ड ब्राउज़रों के लिए एक कुशल अवरोधक। CPU और स्मृति पर आसान।","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["hi"]},{"name":"uBlock Origin","description":"இறுதியாக, ஒரு திறமையான விளம்பரத் தடுப்பான். கணினியின் மையச் செயற்பகுதியின் மேலும் நினைவகத்தின் மேலும் இலகுவானது.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ta"]},{"name":"uBlock Origin","description":"Axır ki, prosessor və yaddaş yükünü azaldan səmərəli bir əngəlləyici var.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["az"]},{"name":"uBlock Origin","description":"มาแล้ว! โปรแกรมบล็อกโฆษณาเบาเบา ไม่กิน ซีพียู หรือ แรม","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["th"]},{"name":"uBlock Origin","description":"Finally, an efficient blocker. Easy on CPU and memory.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["en-GB"]},{"name":"uBlock Origin","description":"शेवटी, एक कार्यक्षम ब्लॉकर क्रोमियम आधारित ब्राउझरांसाठी. सीपीयू आणि मेमरी वर सोपे जातो.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["mr"]},{"name":"uBlock Origin","description":"Endelig en effektiv blokkeringsutvidelse. Lavt CPU- og minnebruk.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["nb"]},{"name":"uBlock Origin","description":"როგორც იქნა, მძლავრი და შედეგიანი რეკლამების შემზღუდავი. ზოგავს CPU-ს და მეხსიერებას.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ka"]},{"name":"uBlock Origin","description":"Коначно, ефикасан блокатор. Ниски процесорски и меморијски захтеви.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["sr"]},{"name":"uBlock Origin","description":"Končno, učinkovita, procesorju in pomnilniku prijazna razširitev za blokiranje oglasov.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["sl"]},{"name":"uBlock Origin","description":"Beidzot, efektīvs bloķētājs. Nepārslogo procesoru un atmiņu.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["lv"]},{"name":"uBlock Origin","description":"Sa wakas! Isang magaling na blocker para sa Chromium-based browsers. Magaan sa CPU at memory.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["fil"]},{"name":"uBlock Origin","description":"一款高效的网络请求过滤工具,占用极低的内存和 CPU。","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"uBlock Origin","description":"Viimeinkin tehokas ja kevyt mainosten estäjä.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"uBlock Origin","description":"Վերջապե՛ս, արդյունավետ արգելափակիչ։ Խնայում է մշակիչը և հիշողությունը։","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["hy"]},{"name":"uBlock Origin","description":"În sfârșit, un blocant eficient. Are un impact mic asupra procesorului și memoriei.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ro"]},{"name":"uBlock Origin","description":"Жарнамаларды жақсы өшіретін Addon'дардың бірі. Компьютердің қуатың аз алады.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["kk"]},{"name":"uBlock Origin","description":"Konačno, efikasan bloker. Štedljiv na procesoru i memoriji.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["bs"]},{"name":"uBlock Origin","description":"Επιτέλους, ένας αποτελεσματικός blocker. Ελαφρύς για τον επεξεργαστή και τη μνήμη.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"uBlock Origin","description":"Por fin, un bloqueador eficiente con uso mínimo de procesador y memoria.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"uBlock Origin","description":"Finalmente, um bloqueador eficiente. Com baixo uso de memória e CPU.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"uBlock Origin","description":"סוף סוף, חוסם יעיל. קל על המעבד והזיכרון.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["he"]},{"name":"uBlock Origin","description":"Endelig en effektiv blocker. Lavt CPU- og hukommelsesforbrug.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"uBlock Origin","description":"Sonunda, etkili bir engelleyici. İşlemciyi ve belleği yormaz.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"uBlock Origin","description":"終於有套使用不多的 CPU 及記憶體資源的高效率阻擋器。","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"uBlock Origin","description":"Тинех Интернет тишкерӳҫӗ валли хӑвӑрт та витӗмлӗ чаркӑч пур.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["cv"]},{"name":"uBlock Origin","description":"Endelig en effektiv blokkeringsutvidelse. Lavt CPU- og minnebruk.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["no"]},{"name":"uBlock Origin","description":"Konačno, efikasan blokator. Lak na CPU i memoriji.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["hr"]},{"name":"uBlock Origin","description":"Eindelijk, een efficiënte adblocker. Gebruikt weinig processorkracht en geheugen.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"uBlock Origin","description":"Endlich ein effizienter Blocker. Prozessor-freundlich und bescheiden beim Speicherbedarf.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"uBlock Origin","description":"Konečne efektívny blokovač. Nezaťažuje CPU ani pamäť.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["sk"]},{"name":"uBlock Origin","description":"بالاخره، یک بلاکر کارآمد. کم حجم بر روی پردازنده و حافظه.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["fa"]},{"name":"uBlock Origin","description":"Cuối cùng, đã có một công cụ chặn quảng cáo hiệu quả, tiêu tốn ít CPU và bộ nhớ.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["vi"]},{"name":"uBlock Origin","description":"Finalment, un blocador eficient que utilitza pocs recursos de memòria i processador.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"uBlock Origin","description":"Ó fin, un bloqueador eficiente que non chupa toda a memoria e o procesador.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["gl"]},{"name":"uBlock Origin","description":"Më në fund, një bllokues efikas që nuk e rëndon procesorin dhe memorien.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["sq"]},{"name":"uBlock Origin","description":"Наконец-то, быстрый и эффективный блокировщик для браузеров.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"uBlock Origin","description":"Nareszcie skuteczny bloker charakteryzujący się niskim użyciem procesora i pamięci.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"uBlock Origin","description":"അവസാനം, ഒരു കാര്യക്ഷമമായ ബ്ലോക്കര്‍. ലഘുവായ CPU, memory ഉപയോഗം.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ml"]},{"name":"uBlock Origin","description":"Akhirnya, penyekat yang cekap. Tidak membebankan CPU dan memori.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ms"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"57.0","maxVersion":null}],"targetPlatforms":[],"signedState":2,"signedDate":1620114445000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["dns","menus","privacy","storage","tabs","unlimitedStorage","webNavigation","webRequest","webRequestBlocking"],"origins":["","http://*/*","https://*/*","file://*/*","https://easylist.to/*","https://*.fanboy.co.nz/*","https://filterlists.com/*","https://forums.lanik.us/*","https://github.com/*","https://*.github.io/*"]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"img/ublock.svg","32":"img/ublock.svg","48":"img/ublock.svg","64":"img/ublock.svg","96":"img/ublock.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{"webRequest":{"onBeforeRequest":[[{"incognito":null,"tabId":null,"types":null,"urls":["moz-extension://90be17cd-7169-4943-9a04-3cd8bf7fec41/web_accessible_resources/*"],"windowId":null},["blocking"]],[{"incognito":null,"tabId":null,"types":null,"urls":["http://*/*","https://*/*","ws://*/*","wss://*/*"],"windowId":null},["blocking"]]],"onHeadersReceived":[[{"incognito":null,"tabId":null,"types":null,"urls":["http://*/*","https://*/*","ws://*/*","wss://*/*"],"windowId":null},["blocking","responseHeaders"]]]}}},"hidden":false,"installTelemetryInfo":null,"recommendationState":{"validNotAfter":1777902445000,"validNotBefore":1620114445000,"states":["recommended-android","recommended"]},"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/uBlock0@raymondhill.net.xpi!/","location":"app-profile"}]} \ No newline at end of file +{"schemaVersion":33,"addons":[{"id":"chrome-gnome-shell@gnome.org","syncGUID":"{82508f32-b0ec-4e78-bf50-dc24a1c517d8}","version":"10.1","type":"extension","loader":null,"updateURL":null,"optionsURL":"options.html","optionsType":3,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"GNOME Shell integration","description":"This extension provides integration with GNOME Shell and the corresponding extensions repository https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1542628160000,"updateDate":1623941103000,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/chrome-gnome-shell@gnome.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"GNOME Shell integration","description":"This extension provides integration with GNOME Shell and the corresponding extensions repository https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Integracion a GNOME Shell","description":"Aquesta extension permet l'integracion a GNOME Shell e a las extensions correspondentas del depaus https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["oc"]},{"name":"GNOME Shell integration","description":"This extension provides integration with GNOME Shell and the corresponding extensions repository https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["pt-PT"]},{"name":"Intégration à GNOME Shell","description":"Cette extension permet l'intégration à GNOME Shell et aux extensions correspondantes du dépôt https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Integrasi Shell GNOME","description":"Ekstensi ini menyediakan integrasi dengan Shell GNOME dan repositori ekstensi yang berhubungan https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"GNOME Shell-integration","description":"Detta tillägg tillhandahåller integration med GNOME Shell och det motsvarande tilläggsförrådet https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"Integrace do GNOME Shell","description":"Toto rozšíření poskytuje integraci s GNOME Shell a shoduje se s repozitářem rozšíření https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["cs"]},{"name":"GNOME Shell integráció","description":"Ez a kiterjesztés integrációt biztosít a GNOME Shell-lel, és a hozzá tartozó https://extensions.gnome.org kiterjesztéstárolóval","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"그놈 셸 확장 기능","description":"이 확장 기능은 그놈 셸 통합 기능이 있으며 관련 확장 기능 저장소는 https://extensions.gnome.org에 있습니다","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"Amalachadh slige GNOMW","description":"Bheir an leudachan seo dhut amalachadh le Slige GNOME agus Shell ionad-tasgaidh nan leudachan co-cheangailte rithe https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["gd"]},{"name":"Integració amb el GNOME Shell","description":"Aquesta extensió proporciona integració amb GNOME Shell i el corresponent dipòsit d'extensions https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"Integrácia do Shellu prostredia GNOME","description":"Toto rozšírenie poskytuje integráciu do Shellu prostredia GNOME a príslušný repozitár rozšírení https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["sk"]},{"name":"Интеграција Гномове шкољке","description":"Ово проширење обезбеђује интеграцију са Гномовом шкољком и одговарајућом ризницом проширења „https://extensions.gnome.org“","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["sr"]},{"name":"GNOME Shell integration","description":"Данное расширение добавляет интеграцию с GNOME Shell и репозиторием расширений https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"Integracja z GNOME Shell","description":"To rozszerzenie dostarcza integrację z GNOME Shell i repozytorium rozszerzeń https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"GNOME Shell integration","description":"This extension provides integration with GNOME Shell and the corresponding extensions repository https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["sl"]},{"name":"Integracija GNOME ljuske","description":"Ovo proširenje omogućuje integraciju s GNOME ljuskom i odgovarajućem repozitoriju proširenja https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["hr"]},{"name":"Gnome Shell -integraatio","description":"Tämä laajennus tarjoaa integraation Gnome Shellin ja Gnome Shellin laajennustietovaraston https://extensions.gnome.org kanssa","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"GNOME Shell integration","description":"Αυτή η επέκταση παρέχει ενσωμάτωση με το GNOME Shell και τα πρόσθετα του από το https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"Integração com GNOME Shell","description":"Essa extensão fornece integração com o GNOME Shell e com o repositório de extensões correspondente, o https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"Integración con GNOME Shell","description":"Esta extensión proporciona integración con GNOME Shell y el correspondiente repositorio de extensiones https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"GNOME Kabuk bütünleşmesi","description":"Bu uygulama, GNOME Kabuk ve buna uygun uzantı deposu olan https://extensions.gnome.org ile bütünleşme sağlar","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"Gnome-shell-integratie","description":"Deze extensie voorziet in de integratie met Gnome-shell en de bijbehorende website met extensies https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"Integratsioon GNOME Shelliga","description":"See laiendus võimaldab integratsiooni GNOME Shelli ja selle laienduste hoidlaga aadressil https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["et"]},{"name":"Integrazione con GNOME Shell","description":"Questa estensione fornisce l'integrazione con GNOME Shell e il corrispondente repository delle estensioni https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"GNOME Shell-Integration","description":"Diese Erweiterung ermöglicht die Integration mit der GNOME Shell und dem dazugehörenden Erweiterungs-Repository von https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Ingegrasjon med GNOME-skallet","description":"This extension provides integration with GNOME Shell and the corresponding extensions repository https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["nb"]},{"name":"GNOME Shell-integration","description":"Denne udvidelse giver integration med GNOME Shell og det tilhørende udvidelsesarkiv https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"Integración de GNOME Shell","description":"Esta extensión fornece integración con GNOME SHell e o correspondente repositorio de extensións https://extensions.gnome.org","creator":"Yuri Konotopov ","developers":null,"translators":null,"contributors":null,"locales":["gl"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"56.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1521613805000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["alarms","nativeMessaging","notifications","storage","tabs"],"origins":["https://extensions.gnome.org/","https://extensions.gnome.org/*"]},"optionalPermissions":{"permissions":["idle"],"origins":[]},"icons":{"16":"icons/GnomeLogo-16.png","48":"icons/GnomeLogo-48.png","128":"icons/GnomeLogo-128.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{}},"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/chrome-gnome-shell@gnome.org.xpi!/","location":"app-profile"},{"id":"wayback_machine@mozilla.org","syncGUID":"{bd345b14-ed21-4d32-9720-0b70258947e4}","version":"1.8.6","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Wayback Machine","description":"Reduce annoying 404 pages by automatically checking for an archived copy in the Wayback Machine.","creator":null,"homepageURL":"https://archive.org/","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1542629092000,"updateDate":1623941103000,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/wayback_machine@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"48.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1524081006000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs","activeTab","storage","webRequest","webRequestBlocking","contextMenus"],"origins":["http://*/*","https://*/*","*://*/*",""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"48":"images/icon.png","96":"images/icon@2x.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{"webRequest":{"onCompleted":[[{"incognito":null,"tabId":null,"types":["main_frame"],"urls":[""],"windowId":null},null]],"onErrorOccurred":[[{"incognito":null,"tabId":null,"types":["main_frame"],"urls":[""],"windowId":null}]]}}},"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/wayback_machine@mozilla.org.xpi!/","location":"app-profile"},{"id":"{9350bc42-47fb-4598-ae0f-825e3dd9ceba}","syncGUID":"{bfe4a8ba-fc6d-4290-b03c-272cf99e1ed1}","version":"1.3.8","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Absolute Enable Right Click & Copy","description":"Force Enable Right Click & Copy","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1542628082000,"updateDate":1623941103000,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/{9350bc42-47fb-4598-ae0f-825e3dd9ceba}.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"48.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1547160306000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs","storage","activeTab"],"origins":[""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"images/16px.png","32":"images/32px.png","48":"images/48px.png","128":"images/128px.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{}},"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/%7B9350bc42-47fb-4598-ae0f-825e3dd9ceba%7D.xpi!/","location":"app-profile"},{"id":"{5173bfae-59df-4a20-a9dd-0ab3e8c82e36}","syncGUID":"{48035ddb-f446-484e-85ac-5586066ac936}","version":"0.1.0","type":"extension","loader":null,"optionsURL":"options.html","optionsType":5,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Sci-Hub X Now!","description":"Free access to academic papers with just a single click via sci-hub!","creator":"Orçun Özdemir and Lucas Sterzinger and Gerry Chen","homepageURL":"https://github.com/gchenfc/sci-hub-now","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1602855989000,"updateDate":1623941103000,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/{5173bfae-59df-4a20-a9dd-0ab3e8c82e36}.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"48.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1610323518000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["activeTab","contextMenus","storage"],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"48":"icons/48x48.png","96":"icons/96x96.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":false,"installTelemetryInfo":{"source":"amo","sourceURL":"https://addons.mozilla.org/en-US/firefox/addon/sci-hub-x-now/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search","method":"amWebAPI"},"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/%7B5173bfae-59df-4a20-a9dd-0ab3e8c82e36%7D.xpi!/","location":"app-profile"},{"id":"keepassxc-browser@keepassxc.org","syncGUID":"{5c925fa7-bdb3-44bc-b792-b5912759722a}","version":"1.7.8.1","type":"extension","loader":null,"updateURL":null,"optionsURL":"options/options.html","optionsType":3,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"KeePassXC-Browser","description":"KeePassXC integration for modern web browsers","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1606947306641,"updateDate":1623941103000,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/keepassxc-browser@keepassxc.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"KeePassXC-Browser","description":"KeePassXC integration for modern web browsers","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"KeePassXC-Browser","description":"モダンなウェブブラウザーのための KeePassXC 統合","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"KeePassXC-Browser","description":"KeePassXC integratsioon moodsatele brauseritele","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["et"]},{"name":"KeePassXC-Browser","description":"KeePassXC интеграция за съвременните уеб браузъри","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"KeePassXC-Browser","description":"Integrasi KeePassXC untuk peramban web modern","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"KeePassXC-Browser","description":"Intégration de KeePassXC pour les navigateurs Web modernes","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"KeePassXC-Browser","description":"Napojení na KeePassXC pro moderní webové prohlížeče","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["cs"]},{"name":"KeePassXC-Browser","description":"KeePassXC integráció a modern webböngészőkhöz","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"KeePassXC-Browser","description":"Integrazione di KeePassXC per browser web moderni","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"KeePassXC-Browser","description":"Сполучення KeePassXC з сучасними переглядачами тенет","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"KeePassXC-Browser","description":"KeePassXC-Integration für moderne Webbrowser","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"KeePassXC-Browser","description":"현대적인 웹 브라우저용 KeePassXC 통합","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"KeePassXC-Browser","description":"Integração KeepassXC para os navegadores modernos","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["pt-PT"]},{"name":"KeePassXC-Browser","description":"Integracja KeePassXC z nowoczesnymi przeglądarkami internetowymi","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"KeePassXC-Browser","description":"KeePassXC integration för moderna webbläsare","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"KeePassXC-Browser","description":"Интеграция KeePassXC в современные веб-браузеры","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"KeePassXC-Browser","description":"KeePassXC-integraatio moderneille nettiselaimille","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"KeePassXC-Browser","description":"KeePassXC integrare pentru browsere web moderne","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["ro"]},{"name":"KeePassXC-Browser","description":"KeePassXC 与现代 Web 浏览器的集成","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"KeePassXC-Browser","description":"Integración de KeePassXC para navegadores web modernos","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"KeePassXC-Browser","description":"Ενσωμάτωση KeePassXC για σύγχρονα προγράμματα περιήγησης ιστού","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"KeePassXC-Browser","description":"KeePassXC 與現代瀏覽器的整合","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"KeePassXC-Browser","description":"KeePassXC-integrering til moderne webbrowsere","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"KeePassXC-Browser","description":"Integração ao KeePassXC para navegadores modernos","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"KeePassXC-Browser","description":"KeePassXC integracija za sodobne spletne brskalnike","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["sl"]},{"name":"KeePassXC-Browser","description":"KeePassXC integratio pro interretialibus navigatoribus modernis","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["la"]},{"name":"KeePassXC-Browser","description":"Modern web tarayıcıları için KeePassXC bütünleşmesi","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"KeePassXC-Browser","description":"KeePassXC-integratie voor moderne webbrowsers","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["nl-NL"]},{"name":"KeePassXC-Browser","description":"KeePassXC-integratie voor moderne webbrowsers","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"KeePassXC-Browser","description":"Integração KeepassXC para os navegadores modernos","creator":"KeePassXC Team","developers":null,"translators":null,"contributors":null,"locales":["pt"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"67.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1618234520000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["activeTab","contextMenus","clipboardWrite","nativeMessaging","notifications","storage","tabs","webNavigation","webRequest","webRequestBlocking"],"origins":["https://*/*","http://*/*","https://api.github.com/",""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"icons/keepassxc.svg","48":"icons/keepassxc.svg","64":"icons/keepassxc.svg","96":"icons/keepassxc.svg","128":"icons/keepassxc.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":false,"installTelemetryInfo":{"source":"amo","sourceURL":"https://addons.mozilla.org/en-US/firefox/addon/keepassxc-browser/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search","method":"amWebAPI"},"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/keepassxc-browser@keepassxc.org.xpi!/","location":"app-profile"},{"id":"yayanotherspeeddial@bakadev.fr","syncGUID":"{3095ecca-6e6a-42d5-b1d5-6778d84c2a99}","version":"1.5.2.1","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Yay! Another Speed dial!","description":"A cool and highly customizable Speed Dial focused on style and simplicity.","creator":"Loïc","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1552785444000,"updateDate":1623941103000,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/yayanotherspeeddial@bakadev.fr.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Yay! Another Speed dial!","description":"A cool and highly customizable Speed Dial focused on style and simplicity.","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Yay! Another Speed dial!","description":"Un superbe Speed Dial, complètement personnalisable, concentré sur le style et la simplicité.","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Yay! Another Speed dial!","description":"Egy rendkívül jól testreszabható gyorshívó, amit a stílus és az egyszerűség jellemez.","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"Yay! Another Speed dial!","description":"Eine coole und höchst anpassbare Speed Dial Erweiterung, fokussiert auf Aussehen und Einfachheit.","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Yay! Another Speed dial!","description":"一个聚焦于风格、简洁,高自定义性的超酷快速启动附加组件。","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"Yay! Another Speed dial!","description":"Классная Экспресс-панель, широко кастомизируемая, простая и стильная.","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"Yay! Another Speed dial!","description":"Un addon con página de accessos directos que se enfoca en verse bien y ser altamente configurable pero facil de usar.","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"Yay! Another Speed dial!","description":"一個聚焦於風格、簡潔,高自訂性的超酷快速啟動附加元件。","creator":"Loïc","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"59.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1620892532000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["storage","contextMenus","tabs","downloads","bookmarks","unlimitedStorage"],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"48":"icons/icon.png","96":"icons/icon@2x.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{}},"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/yayanotherspeeddial@bakadev.fr.xpi!/","location":"app-profile"},{"id":"formautofill@mozilla.org","syncGUID":"{83e890fe-16cc-459b-bbd5-c7eb1b2cf3a5}","version":"1.0.1","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Form Autofill","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1541084183000,"updateDate":1624468638000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/formautofill@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{}},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/formautofill@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"screenshots@mozilla.org","syncGUID":"{e693a1c7-6163-43ad-ac2d-896a25f333dd}","version":"39.0.1","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Firefox Screenshots","description":"Take clips and screenshots from the Web and save them temporarily or permanently.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1541084183000,"updateDate":1624468638000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/screenshots@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"57.0a1","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["activeTab","downloads","tabs","storage","notifications","clipboardWrite","contextMenus"],"origins":["","https://screenshots.firefox.com/","https://screenshots.firefox.com/*"]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{}},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/screenshots@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"webcompat-reporter@mozilla.org","syncGUID":"{c50bfe40-12f2-483e-b633-744e2561c742}","version":"1.4.2","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"WebCompat Reporter","description":"Report site compatibility issues on webcompat.com","creator":"Thomas Wisniewski ","homepageURL":"https://github.com/mozilla/webcompat-reporter","developers":null,"translators":null,"contributors":null},"visible":true,"active":false,"userDisabled":true,"appDisabled":false,"embedderDisabled":false,"installDate":1541084183000,"updateDate":1624468638000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/webcompat-reporter@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs"],"origins":[""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"icons/lightbulb.svg","32":"icons/lightbulb.svg","48":"icons/lightbulb.svg","96":"icons/lightbulb.svg","128":"icons/lightbulb.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/webcompat-reporter@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"webcompat@mozilla.org","syncGUID":"{d68069e0-85d1-41a9-a0ce-6626a27d5361}","version":"22.2.0","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Web Compatibility Interventions","description":"Urgent post-release fixes for web compatibility.","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1541084183000,"updateDate":1624468638000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/webcompat@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"59.0b5","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs","webNavigation","webRequest","webRequestBlocking"],"origins":[""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{"webRequest":{"onBeforeRequest":[[{"incognito":null,"tabId":null,"types":["script"],"urls":["*://webcompat-addon-testbed.herokuapp.com/shims_test.js","*://example.com/browser/browser/extensions/webcompat/tests/browser/shims_test.js","*://example.com/browser/browser/extensions/webcompat/tests/browser/shims_test_2.js","*://example.com/browser/browser/extensions/webcompat/tests/browser/shims_test_3.js","*://cdn.adsafeprotected.com/iasPET.1.js","*://static.adsafeprotected.com/vans-adapter-google-ima.js","*://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js","*://auth.9c9media.ca/auth/main.js","*://libs.coremetrics.com/eluminate.js","*://connect.facebook.net/*/sdk.js*","*://connect.facebook.net/*/all.js*","*://www.google-analytics.com/analytics.js","*://www.google-analytics.com/plugins/ua/ec.js","*://www.google-analytics.com/gtm/js","*://www.googletagmanager.com/gtm.js","*://ssl.google-analytics.com/ga.js","*://www.googletagservices.com/tag/js/gpt.js","*://securepubads.g.doubleclick.net/tag/js/gpt.js","*://securepubads.g.doubleclick.net/gpt/pubads_impl_*.js","*://s0.2mdn.net/instream/html5/ima3.js","*://imasdk.googleapis.com/js/sdkloader/ima3.js","*://id.rambler.ru/rambler-id-helper/auth_events.js","*://media.richrelevance.com/rrserver/js/1.2/p13n.js"],"windowId":null},["blocking"]]],"onBeforeSendHeaders":[[{"incognito":null,"tabId":null,"types":null,"urls":["*://webcompat-addon-testbed.herokuapp.com/*"],"windowId":null},["blocking","requestHeaders"]],[{"incognito":null,"tabId":null,"types":null,"urls":["*://*.att.tv/*"],"windowId":null},["blocking","requestHeaders"]],[{"incognito":null,"tabId":null,"types":null,"urls":["*://steamcommunity.com/chat*"],"windowId":null},["blocking","requestHeaders"]],[{"incognito":null,"tabId":null,"types":null,"urls":["https://watch.sling.com/*","https://www.sling.com/*"],"windowId":null},["blocking","requestHeaders"]],[{"incognito":null,"tabId":null,"types":null,"urls":["https://www.mobilesuica.com/*"],"windowId":null},["blocking","requestHeaders"]],[{"incognito":null,"tabId":null,"types":null,"urls":["*://*.bancosantander.es/*","*://*.gruposantander.es/*","*://*.santander.co.uk/*","*://bob.santanderbank.com/*","*://rolb.santanderbank.com/*"],"windowId":null},["blocking","requestHeaders"]],[{"incognito":null,"tabId":null,"types":null,"urls":["*://*.spectrum.net/voice/*"],"windowId":null},["blocking","requestHeaders"]]],"onHeadersReceived":[[{"incognito":null,"tabId":null,"types":null,"urls":["https://ads-us.rd.linksynergy.com/as.php*"],"windowId":null},["blocking","responseHeaders"]]]}}},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/webcompat@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"doh-rollout@mozilla.org","syncGUID":"{93ddb028-d448-4733-9438-c152fb327f1e}","version":"2.0.0","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"DoH Roll-Out","description":"This used to be a Mozilla add-on that supported the roll-out of DoH, but now only exists as a stub to enable migrations.","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1579529887000,"updateDate":1624468638000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/doh-rollout@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"72.0a1","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/doh-rollout@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"pictureinpicture@mozilla.org","syncGUID":"{8e1b1da0-727b-4310-a91a-6ecfba0cdeb5}","version":"1.0.0","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Picture-In-Picture","description":"Fixes for web compatibility with Picture-in-Picture","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1622474771000,"updateDate":1624468638000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/pictureinpicture@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"88.0a1","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/pictureinpicture@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"bing@search.mozilla.org","syncGUID":"{676e9101-35f2-43c8-9885-420824540115}","version":"1.3","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Bing","description":"Microsoft Bing","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1569709370787,"updateDate":1568839541000,"applyBackgroundUpdates":1,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/bing/","location":"app-builtin"},{"id":"google@search.mozilla.org","syncGUID":"{d61f55d6-06fb-4158-bcb7-9d36dec4e9b2}","version":"1.1","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1569709370845,"updateDate":1568839541000,"applyBackgroundUpdates":1,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["b-1-d"]},{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["b-1-e"]},{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["b-d"]},{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["b-e"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/google/","location":"app-builtin"},{"id":"wikipedia@search.mozilla.org","syncGUID":"{f3d5848e-8a3f-458b-808c-e606c35c0620}","version":"1.1","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Wikipedia (en)","description":"Wikipedia, the Free Encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1569709371001,"updateDate":1568839541000,"applyBackgroundUpdates":1,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Wikipedia (en)","description":"Wikipedia, the Free Encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Wikipedija (hr)","description":"Wikipedija, slobodna enciklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hr"]},{"name":"Wikipedia (fi)","description":"Wikipedia (fi), vapaa tietosanakirja","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"Wikipedia (hy)","description":"Վիքիփեդիա՝ ազատ հանրագիտարան","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hy"]},{"name":"Уикипедия (kk)","description":"Уикипедия (kk)","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["kk"]},{"name":"Вікіпедыя (be)","description":"Вікіпедыя, свабодная энцыклапедыя","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["be"]},{"name":"위키백과 (ko)","description":"Wikipedia, the free encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["kr"]},{"name":"Wikipedia (ro)","description":"Wikipedia, enciclopedia liberă","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ro"]},{"name":"Wikipedia (bs)","description":"Slobodna enciklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["bs"]},{"name":"Wikipedia (pt)","description":"Wikipédia, a enciclopédia livre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["pt"]},{"name":"Vikipetã (gn)","description":"Vikipetã, opaite tembikuaa hekosãsóva renda","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["gn"]},{"name":"વિકિપીડિયા (gu)","description":"વીકીપીડિયા, મુક્ત એનસાયક્લોપીડિયા","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["gu"]},{"name":"Wikipedia (el)","description":"Βικιπαίδεια, η ελεύθερη εγκυκλοπαίδεια","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"Wikipedia (es)","description":"Wikipedia, la enciclopedia libre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"ויקיפדיה","description":"ויקיפדיה","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["he"]},{"name":"Wikipedia (da)","description":"Wikipedia, den frie encyklopædi","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"Wikipedia (tr)","description":"Vikipedi, özgür ansiklopedi","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"Wikipedija (hsb)","description":"Wikipedija, swobodna encyklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hsb"]},{"name":"Wikipedy (fy)","description":"De fergese ensyklopedy","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fy-NL"]},{"name":"विकिपीडिया (ne)","description":"विकिपिडिया एक स्वतन्त्र विश्वकोष","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ne"]},{"name":"Wikipedia (nl)","description":"De vrije encyclopedie","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"Wikipedia (ja)","description":"Wikipedia - フリー百科事典","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"Vikipeedia (et)","description":"Vikipeedia, vaba entsüklopeedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["et"]},{"name":"Wikipèdia (oc)","description":"Wikipèdia, l'enciclopèdia liura","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["oc"]},{"name":"Wicipedia (cy)","description":"Wicipedia, Y Gwyddioniadur Rhydd","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["cy"]},{"name":"వికీపీడియా (te)","description":"వికీపీడియా (te)","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["te"]},{"name":"Wikipédia (fr)","description":"Wikipédia, l'encyclopédie libre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Wikipedia (tl)","description":"Wikipedia, ang malayang ensiklopedya","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["tl"]},{"name":"维基百科","description":"维基百科,自由的百科全书","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"Wikipedia (lij)","description":"Wikipedia, l'enciclopedia libera","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["lij"]},{"name":"វីគីភីឌា (km)","description":"វីគីភីឌា សព្វ​វចនា​ធិប្បាយ​សេរី","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["km"]},{"name":"Уикипедия (bg)","description":"Уикипедия, свободната енциклоподия","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"Wikipedia (id)","description":"Wikipedia, ensiklopedia bebas","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"Wikipedia (pa)","description":"ਵਿਕਿਪੀਡਿਆ, ਮੁਫ਼ਤ/ਮੁਕਤ ਸ਼ਬਦਕੋਸ਼","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["pa"]},{"name":"উইকিপিডিয়া (bn)","description":"উইকিপিডিয়া, মুক্ত বিশ্বকোষ","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["bn"]},{"name":"Wikipedia (eu)","description":"Wikipedia, entziklopedia askea","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["eu"]},{"name":"Wikipedie (cs)","description":"Wikipedia, svobodná encyclopedie","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["cz"]},{"name":"Wikipédia (hu)","description":"Wikipedia, a szabad enciklopédia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"Wikipedia (kn)","description":"Wikipedia, the free encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["kn"]},{"name":"Wikipedia (is)","description":"Wikipedia, the free encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["is"]},{"name":"Вікіпедія (uk)","description":"Вікіпедія, вільна енциклопедія","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"Wikipedia (kab)","description":"Wikipedia, tasanayt tilellit","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["kab"]},{"name":"Wikipedia (zh)","description":"維基百科,自由的百科全書","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"ویکیپیڈیا (ur)","description":"ویکیپیڈیا آزاد دائرۃ المعارف","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ur"]},{"name":"Vikipedio (eo)","description":"Vikipedio, la libera enciklopedio","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["eo"]},{"name":"Wikipedia (si)","description":"Wikipedia, the free encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["si"]},{"name":"ويكيبيديا (ar)","description":"ويكيبيديا (ar)","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ar"]},{"name":"Wikipedia (vi)","description":"Wikipedia, bách khoa toàn thư mở","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["vi"]},{"name":"ვიკიპედია (ka)","description":"ვიკიპედია, თავისუფალი ენციკლოპედია","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ka"]},{"name":"Uicipeid (gd)","description":"Wikipedia, An leabhar mòr-eòlais","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["gd"]},{"name":"Wikipedia (it)","description":"Wikipedia, l'enciclopedia libera","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"Vikipediya (uz)","description":"Vikipediya, ochiq ensiklopediya","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["uz"]},{"name":"Wikipedia (lt)","description":"Vikipedija, laisvoji enciklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["lt"]},{"name":"Wikipedia (sq)","description":"Wikipedia, enciklopedia e lirë","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sq"]},{"name":"Vicipéid (ga)","description":"Vicipéid, an Chiclipéid Shaor","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ga-IE"]},{"name":"विकिपीडिया (hi)","description":"विकिपीडिया (हिन्दी)","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hi"]},{"name":"Vikipedeja (ltg)","description":"Vikipēdija, breivuo eņciklopedeja","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ltg"]},{"name":"விக்கிப்பீடியா (ta)","description":"விக்கிப்பீடியா (ta)","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ta"]},{"name":"Vikipediya (az)","description":"Vikipediya, açıq ensiklopediya","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["az"]},{"name":"Википедија (mk)","description":"Википедија, слободната енциклопедија","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["mk"]},{"name":"วิกิพีเดีย","description":"วิกิพีเดีย สารานุกรมเสรี","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["th"]},{"name":"Wikipedia (de)","description":"Wikipedia, die freie Enzyklopädie","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Wikipedija (dsb)","description":"Wikipedija, lichotna encyklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["dsb"]},{"name":"विकिपीडिया (mr)","description":"विकिपीडिया, मोफत माहितीकोष","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["mr"]},{"name":"Wikipedia (ast)","description":"La enciclopedia llibre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ast"]},{"name":"Wikipedia (my)","description":"အခမဲ့လွတ်လပ်စွယ်စုံကျမ်း","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["my"]},{"name":"Wikipedia (rm)","description":"Vichipedia, l'enciclopedia libra","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["rm"]},{"name":"Wikipedia (nn)","description":"Wikipedia, det frie oppslagsverket","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["NN"]},{"name":"Wikipedia (wo)","description":"Wikipedia, Jimbulang bu Ubbeeku bi","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["wo"]},{"name":"Wikipedia (gl)","description":"Wikipedia, a enciclopedia libre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["gl"]},{"name":"Viquipèdia (ca)","description":"L'enciclopèdia lliure","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"Wikipédia (sk)","description":"Wikipédia, slobodná a otvorená encyklopédia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sk"]},{"name":"Wikipedia (af)","description":"Wikipedia, die vrye ensiklopedie","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["af"]},{"name":"ویکی‌پدیا (fa)","description":"ویکی‌پدیا، دانشنامهٔ آزاد","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fa"]},{"name":"Википедија (sr)","description":"Претрага Википедије на српском језику","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sr"]},{"name":"Wikipedia (ia)","description":"Wikipedia, le encyclopedia libere","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ia"]},{"name":"Wikipedia (no)","description":"Wikipedia, den frie encyklopedi","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["NO"]},{"name":"Wikipedia (ms)","description":"Wikipedia, ensiklopedia bebas","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ms"]},{"name":"Википедия (ru)","description":"Википедия, свободная энциклопедия","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"Wikipedia (br)","description":"Wikipedia, an holloueziadur digor","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["br"]},{"name":"Wikipedia (pl)","description":"Wikipedia, wolna encyklopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"Вікіпэдыя (be-tarask)","description":"Вікіпэдыя, вольная энцыкляпэдыя","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["be-tarask"]},{"name":"Wikipedia (sv)","description":"Wikipedia, den fria encyklopedin","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sv-SE"]},{"name":"ວິກິພີເດຍ (lo)","description":"ວິກິພີເດຍ, ສາລານຸກົມເສລີ","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["lo"]},{"name":"Wikipedija (sl)","description":"Wikipedija, prosta enciklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sl"]},{"name":"Vikipēdija","description":"Vikipēdija, brīvā enciklopēdija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["lv"]},{"name":"Biquipedia (an)","description":"A enciclopedia Libre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["an"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/wikipedia/","location":"app-builtin"},{"id":"ddg@search.mozilla.org","syncGUID":"{d266c863-eb3a-4a16-a017-a58dde5b3a76}","version":"1.1","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"DuckDuckGo","description":"Search DuckDuckGo","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1569709371053,"updateDate":1568839541000,"applyBackgroundUpdates":1,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/ddg/","location":"app-builtin"},{"id":"ebay@search.mozilla.org","syncGUID":"{caa1cea7-55c5-4750-b65f-55ced3f5309f}","version":"1.3","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1594071183499,"applyBackgroundUpdates":1,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ie"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ch"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["at"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["au"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["be"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fr"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/ebay/","location":"app-builtin"},{"id":"firefox-alpenglow@mozilla.org","syncGUID":"{c545409f-983c-4328-95e3-6830f10e078a}","version":"1.4","type":"theme","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Firefox Alpenglow","description":"Use a colorful appearance for buttons, menus, and windows.","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":false,"userDisabled":true,"appDisabled":false,"embedderDisabled":false,"installDate":1604968137971,"applyBackgroundUpdates":1,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"userPermissions":null,"optionalPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://builtin-themes/alpenglow/","location":"app-builtin"},{"id":"default-theme@mozilla.org","syncGUID":"{cd4717b9-58bd-4ede-90e6-a591641227b2}","version":"1.2","type":"theme","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"System theme","description":"Follow the operating system setting for buttons, menus, and windows.","creator":"Mozilla","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1604968444292,"applyBackgroundUpdates":1,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"userPermissions":null,"optionalPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://default-theme/","location":"app-builtin"},{"id":"firefox-compact-dark@mozilla.org","syncGUID":"{ab1c995c-3f5c-48bc-90c2-b62ac992bd5f}","version":"1.2","type":"theme","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Dark","description":"A theme with a dark color scheme.","creator":"Mozilla","developers":null,"translators":null,"contributors":null},"visible":true,"active":false,"userDisabled":true,"appDisabled":false,"embedderDisabled":false,"installDate":1604968444295,"applyBackgroundUpdates":1,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"userPermissions":null,"optionalPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://builtin-themes/dark/","location":"app-builtin"},{"id":"firefox-compact-light@mozilla.org","syncGUID":"{a4e3a0da-ee94-4b52-b816-ea6d3195739b}","version":"1.2","type":"theme","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Light","description":"A theme with a light color scheme.","creator":"Mozilla","developers":null,"translators":null,"contributors":null},"visible":true,"active":false,"userDisabled":true,"appDisabled":false,"embedderDisabled":false,"installDate":1604968444296,"applyBackgroundUpdates":1,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"userPermissions":null,"optionalPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://builtin-themes/light/","location":"app-builtin"},{"id":"amazon@search.mozilla.org","syncGUID":"{7581a3a9-689a-4c01-986d-d9d98832ff5e}","version":"1.9","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Amazon.com.au","description":"Amazon.com.au Search","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1618002157570,"applyBackgroundUpdates":1,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Amazon.com.au","description":"Amazon.com.au Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["au"]},{"name":"Amazon.ca","description":"Amazon.ca Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"Amazon.co.uk","description":"Amazon.co.uk Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en-GB-adm"]},{"name":"Amazon.es","description":"Amazon.es","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["spain"]},{"name":"Amazon.de","description":"Amazon.de Suche","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["de-adm"]},{"name":"Amazon.fr","description":"Recherche Amazon.fr","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["france"]},{"name":"Amazon.nl","description":"Amazon.nl Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"Amazon.co.uk","description":"Amazon.co.uk Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en-GB"]},{"name":"Amazon.co.jp","description":"Amazon.co.jp Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["jp"]},{"name":"Amazon.se","description":"Amazon.se","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sweden"]},{"name":"Amazon.it","description":"Ricerca Amazon.it","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"Amazon.in","description":"Amazon.in Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["in"]},{"name":"Amazon.de","description":"Amazon.de Suche","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["de"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/amazon/","location":"app-builtin"},{"id":"{b7f9d2cd-d772-4302-8c3f-eb941af36f76}","syncGUID":"{e26c6766-736d-40be-b9b8-c7da7cd75a9e}","version":"1.1.48","type":"extension","loader":null,"updateURL":null,"optionsURL":"pages/options/options.html","optionsType":5,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Privacy Redirect","description":"Redirects Twitter, YouTube, Instagram and more to privacy friendly alternatives.","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1601768229000,"updateDate":1626193129444,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/{b7f9d2cd-d772-4302-8c3f-eb941af36f76}.xpi","skinnable":false,"sourceURI":"https://addons.cdn.mozilla.net/user-media/addons/2600548/privacy_redirect-1.1.48-an+fx.xpi?filehash=sha256%3Ab1ee93dd4ead3286373f3a6475e32c3f51b291a5cc6f37abbdbfb8ba84350182","releaseNotesURI":"https://addons.mozilla.org/versions/updateInfo/5263539/en-US/","softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Privacy Redirect","description":"Redirects Twitter, YouTube, Instagram and more to privacy friendly alternatives.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Privacy Redirect","description":"Redirige les requêtes les demandes Twitter, YouTube, Instagram et Google Maps vers des alternatives respectueuses de la vie privée. pour Twitter, YouTube, Instagram et Google Maps vers des alternatives respectueuses de la vie privée.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Privacy Redirect","description":"Reindirizza Twitter, YouTube, Instagram ed altri verso alternative rispettose della privacy.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"Privacy Redirect","description":"将 Twitter、YouTube、Instagram 和 Google Maps 重定向至尊重隐私的替代品","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"Privacy Redirect","description":"Przekierowuje serwisy takie jak: Twitter, YouTube, Instagram i Google Maps do alternatyw sprzyjających prywatności.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"Privacy Redirect","description":"Leitet Anfragen von Twitter, YouTube, Instagram & Google Maps auf datenschutzfreundliche Alternativen weiter.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Privacy Redirect","description":"Redirige las solicitudes de Twitter, Youtube, Instagram, Google Maps, Reddit y la Búsqueda de Google a alternativas que respetan su privacidad.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"Privacy Redirect","description":"Перенаправляет запросы к Twitter, YouTube, Instagram и Google Maps на альтернативные сервисы, дружелюбные к приватности.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"Privacy Redirect","description":"Twitter, YouTube, Instagram, Google Haritalar, Reddit & Google Arama bağlantılarını gizlilik dostu alternatiflerine yönlendirir.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["tr"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"67.0","maxVersion":null}],"targetPlatforms":[],"signedState":2,"signedDate":1625874941000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["storage","webRequest","webRequestBlocking"],"origins":["","*://twitter.com/*","*://www.twitter.com/*","*://mobile.twitter.com/*","*://pbs.twimg.com/*","*://video.twimg.com/*","*://invidious.snopyta.org/*","*://invidious.xyz/*","*://invidious.kavin.rocks/*","*://tube.connect.cafe/*","*://invidious.zapashcanon.fr/*","*://invidiou.site/*","*://vid.mint.lgbt/*","*://invidious.site/*","*://yewtu.be/*","*://invidious.tube/*","*://invidious.silkky.cloud/*","*://invidious.fdn.fr/*","*://invidious.himiko.cloud/*","*://inv.skyn3t.in/*","*://tube.incognet.io/*","*://invidious.tinfoil-hat.net/*","*://invidious.namazso.eu/*","*://vid.puffyan.us/*","*://dev.viewtube.io/*","*://invidious.048596.xyz/*","*://fz253lmuao3strwbfbmx46yu7acac2jz27iwtorgmbqlkurlclmancad.onion/*","*://qklhadlycap4cnod.onion/*","*://c7hqkpkpemu6e7emz5b4vyz7idjgdvgaaa3dyimmeojqbgpea3xqjoid.onion/*","*://w6ijuptxiku4xpnnaetxvnkc5vqcdu7mgns2u77qefoixi63vbvnpnqd.onion/*"]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"assets/images/icon16.png","32":"assets/images/icon32.png","48":"assets/images/icon48.png","128":"assets/images/icon128.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"amo","sourceURL":"https://addons.mozilla.org/en-US/firefox/addon/privacy-redirect/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search","method":"amWebAPI"},"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/%7Bb7f9d2cd-d772-4302-8c3f-eb941af36f76%7D.xpi!/","location":"app-profile"},{"id":"{b9db16a4-6edc-47ec-a1f4-b86292ed211d}","syncGUID":"{2159952e-6d3a-4f21-affb-87baa545087c}","version":"7.6.0","type":"extension","loader":null,"updateURL":null,"optionsURL":"content/settings.html?panel=settings","optionsType":3,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1573413674000,"updateDate":1626193129461,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/{b9db16a4-6edc-47ec-a1f4-b86292ed211d}.xpi","skinnable":false,"sourceURI":"https://addons.cdn.mozilla.net/user-media/addons/3006/video_downloadhelper-7.6.0-fx.xpi?filehash=sha256%3Abd51d9c1064e869a20403012e010319b46ef0ab72bb33f22a310dd3aab277a53","releaseNotesURI":"https://addons.mozilla.org/versions/updateInfo/5259716/en-US/","softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["en-US"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["dsb"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["is"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["hsb"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["nb"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["sk"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["ro"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["sl"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"Video DownloadHelper","description":"Download Videos from the Web","creator":"Michel Gutierrez","developers":null,"translators":null,"contributors":null,"locales":["nl"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedState":2,"signedDate":1625144654000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs","contextMenus","nativeMessaging","webRequest","webRequestBlocking","downloads","clipboardWrite","webNavigation","notifications","storage","cookies","menus"],"origins":["","*://*.downloadhelper.net/*"]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"32":"content/images/icon-32.png","40":"content/images/icon-40.png","48":"content/images/icon-48.png","128":"content/images/icon-128.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"amo","method":"amWebAPI"},"recommendationState":{"validNotAfter":1782932654000,"validNotBefore":1625144654000,"states":["recommended"]},"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/%7Bb9db16a4-6edc-47ec-a1f4-b86292ed211d%7D.xpi!/","location":"app-profile"},{"id":"jid1-MnnxcxisBPnSXQ@jetpack","syncGUID":"{f0f2b64d-ce1c-44d4-af9f-71ce9270b90c}","version":"2021.6.8","type":"extension","loader":null,"updateURL":null,"optionsURL":"/skin/options.html","optionsType":3,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Privacy Badger","description":"Privacy Badger automatically learns to block invisible trackers.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1542628050000,"updateDate":1626193129482,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/jid1-MnnxcxisBPnSXQ@jetpack.xpi","skinnable":false,"sourceURI":"https://addons.cdn.mozilla.net/user-media/addons/506646/privacy_badger-2021.6.8-an+fx.xpi?filehash=sha256%3A72579f77035a5146b7332e39a28063c6bb48ca7284d5b1383cab24dca65372a8","releaseNotesURI":"https://addons.mozilla.org/versions/updateInfo/5247789/en-US/","softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Privacy Badger","description":"Privacy Badger automatically learns to block invisible trackers.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["en-US"]},{"name":"Privacy Badger","description":"O Privacy Badger aprende automaticamente a bloquear rastreadores invisíveis.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["pt-PT"]},{"name":"Privacy Badger","description":"Privacy Badger автоматично се научава да блокира невидими преследвачи.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"Privacy Badger","description":"Privacy Badger se automaticky učí blokovat neviditelné sledovací prvky na webových stránkách.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["cs"]},{"name":"Privacy Badger","description":"Privacy Badger lär sig automatiskt att blockera osynliga spårare.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"Privacy Badger","description":"A Privacy Badger automatikusan megtanulja a láthatatlan követők tiltását.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"Privacy Badger","description":"Privacy Badger apprend automatiquement à bloquer les traceurs invisibles.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Privacy Badger","description":"Privacy Badger автоматично навчається блокувати невидимі елементи стеження.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"«غرير الخصوصية»","description":"يتعلم «غرير الخصوصية» تلقائيا أن يحجب المتعقبات الخفية.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["ar"]},{"name":"Privata Melo","description":"Privata Melo aŭtomate lernas bloki nevideblajn spurilojn.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["eo"]},{"name":"Privacy Badger","description":"Privacy Badger는 자동으로 보이지 않는 추적기를 차단하는 법을 학습합니다.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"Privacy Badger","description":"Privacy Badger impara automaticamente a bloccare i tracker invisibili.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"Privacy Badger","description":"El Privacy Badger aprèn automàticament a blocar rastrejadors invisibles.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"Privacy Badger","description":"Privacy Badger lernt automatisch, unsichtbare Tracker zu blocken.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"隐私獾","description":"隐私獾会自动学习去阻止不可见的追踪器。","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"Privacy Badger","description":"Privacy Badger автоматически учится блокировать невидимые трекеры.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"پرایوسی بجر","description":"پرایوسی بجر به صورت اتوماتیک یاد می گیرد تا ردیاب های مخفی را بلاک کند.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["fa"]},{"name":"Privacy Badger","description":"Privacy Badger automatycznie uczy się blokować niewidoczne elementy śledzące.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"Privacy Badger","description":"Το Privacy Badger μαθαίνει αυτόματα να αποκλείει \"αόρατους\" ιχνηλάτες.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"Privacy Badger","description":"Privacy Badger aprende automáticamente a bloquear rastreadores invisibles.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"Privacy Badger","description":"Privacy Badger oppii automaattisesti estämään näkymättömät jäljittimet.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"Privacy Badger","description":"Privacy Badger 會自動學習並阻擋不可見的追蹤器。","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"Privacy Badger","description":"O Privacy Badger aprende automaticamente a bloquear rastreadores invisíveis.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"Privacy Badger","description":"Privacy Badger לומד באופן אוטומטי לחסום עוקבנים בלתי נראים.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["he"]},{"name":"Privacy Badger","description":"Privacy Badger lærer automatisk at blokere usynlige sporinger.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"Privacy Badger","description":"Privacy Badger görünmez takipçileri engellemeyi otomatik olarak öğrenir.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"Privacy Badger","description":"Privacy Badger leert automatisch onzichtbare volgers te blokkeren.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["nl"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"52.0","maxVersion":null}],"targetPlatforms":[],"signedState":2,"signedDate":1623333557000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs","webNavigation","webRequest","webRequestBlocking","storage","cookies","privacy"],"origins":["http://*/*","https://*/*","https://*.facebook.com/*","http://*.facebook.com/*","https://*.messenger.com/*","http://*.messenger.com/*","*://*.facebookcorewwwi.onion/*","https://www.google.com/*","http://www.google.com/*","https://www.google.ad/*","http://www.google.ad/*","https://www.google.ae/*","http://www.google.ae/*","https://www.google.com.af/*","http://www.google.com.af/*","https://www.google.com.ag/*","http://www.google.com.ag/*","https://www.google.com.ai/*","http://www.google.com.ai/*","https://www.google.al/*","http://www.google.al/*","https://www.google.am/*","http://www.google.am/*","https://www.google.co.ao/*","http://www.google.co.ao/*","https://www.google.com.ar/*","http://www.google.com.ar/*","https://www.google.as/*","http://www.google.as/*","https://www.google.at/*","http://www.google.at/*","https://www.google.com.au/*","http://www.google.com.au/*","https://www.google.az/*","http://www.google.az/*","https://www.google.ba/*","http://www.google.ba/*","https://www.google.com.bd/*","http://www.google.com.bd/*","https://www.google.be/*","http://www.google.be/*","https://www.google.bf/*","http://www.google.bf/*","https://www.google.bg/*","http://www.google.bg/*","https://www.google.com.bh/*","http://www.google.com.bh/*","https://www.google.bi/*","http://www.google.bi/*","https://www.google.bj/*","http://www.google.bj/*","https://www.google.com.bn/*","http://www.google.com.bn/*","https://www.google.com.bo/*","http://www.google.com.bo/*","https://www.google.com.br/*","http://www.google.com.br/*","https://www.google.bs/*","http://www.google.bs/*","https://www.google.bt/*","http://www.google.bt/*","https://www.google.co.bw/*","http://www.google.co.bw/*","https://www.google.by/*","http://www.google.by/*","https://www.google.com.bz/*","http://www.google.com.bz/*","https://www.google.ca/*","http://www.google.ca/*","https://www.google.cd/*","http://www.google.cd/*","https://www.google.cf/*","http://www.google.cf/*","https://www.google.cg/*","http://www.google.cg/*","https://www.google.ch/*","http://www.google.ch/*","https://www.google.ci/*","http://www.google.ci/*","https://www.google.co.ck/*","http://www.google.co.ck/*","https://www.google.cl/*","http://www.google.cl/*","https://www.google.cm/*","http://www.google.cm/*","https://www.google.cn/*","http://www.google.cn/*","https://www.google.com.co/*","http://www.google.com.co/*","https://www.google.co.cr/*","http://www.google.co.cr/*","https://www.google.com.cu/*","http://www.google.com.cu/*","https://www.google.cv/*","http://www.google.cv/*","https://www.google.com.cy/*","http://www.google.com.cy/*","https://www.google.cz/*","http://www.google.cz/*","https://www.google.de/*","http://www.google.de/*","https://www.google.dj/*","http://www.google.dj/*","https://www.google.dk/*","http://www.google.dk/*","https://www.google.dm/*","http://www.google.dm/*","https://www.google.com.do/*","http://www.google.com.do/*","https://www.google.dz/*","http://www.google.dz/*","https://www.google.com.ec/*","http://www.google.com.ec/*","https://www.google.ee/*","http://www.google.ee/*","https://www.google.com.eg/*","http://www.google.com.eg/*","https://www.google.es/*","http://www.google.es/*","https://www.google.com.et/*","http://www.google.com.et/*","https://www.google.fi/*","http://www.google.fi/*","https://www.google.com.fj/*","http://www.google.com.fj/*","https://www.google.fm/*","http://www.google.fm/*","https://www.google.fr/*","http://www.google.fr/*","https://www.google.ga/*","http://www.google.ga/*","https://www.google.ge/*","http://www.google.ge/*","https://www.google.gg/*","http://www.google.gg/*","https://www.google.com.gh/*","http://www.google.com.gh/*","https://www.google.com.gi/*","http://www.google.com.gi/*","https://www.google.gl/*","http://www.google.gl/*","https://www.google.gm/*","http://www.google.gm/*","https://www.google.gr/*","http://www.google.gr/*","https://www.google.com.gt/*","http://www.google.com.gt/*","https://www.google.gy/*","http://www.google.gy/*","https://www.google.com.hk/*","http://www.google.com.hk/*","https://www.google.hn/*","http://www.google.hn/*","https://www.google.hr/*","http://www.google.hr/*","https://www.google.ht/*","http://www.google.ht/*","https://www.google.hu/*","http://www.google.hu/*","https://www.google.co.id/*","http://www.google.co.id/*","https://www.google.ie/*","http://www.google.ie/*","https://www.google.co.il/*","http://www.google.co.il/*","https://www.google.im/*","http://www.google.im/*","https://www.google.co.in/*","http://www.google.co.in/*","https://www.google.iq/*","http://www.google.iq/*","https://www.google.is/*","http://www.google.is/*","https://www.google.it/*","http://www.google.it/*","https://www.google.je/*","http://www.google.je/*","https://www.google.com.jm/*","http://www.google.com.jm/*","https://www.google.jo/*","http://www.google.jo/*","https://www.google.co.jp/*","http://www.google.co.jp/*","https://www.google.co.ke/*","http://www.google.co.ke/*","https://www.google.com.kh/*","http://www.google.com.kh/*","https://www.google.ki/*","http://www.google.ki/*","https://www.google.kg/*","http://www.google.kg/*","https://www.google.co.kr/*","http://www.google.co.kr/*","https://www.google.com.kw/*","http://www.google.com.kw/*","https://www.google.kz/*","http://www.google.kz/*","https://www.google.la/*","http://www.google.la/*","https://www.google.com.lb/*","http://www.google.com.lb/*","https://www.google.li/*","http://www.google.li/*","https://www.google.lk/*","http://www.google.lk/*","https://www.google.co.ls/*","http://www.google.co.ls/*","https://www.google.lt/*","http://www.google.lt/*","https://www.google.lu/*","http://www.google.lu/*","https://www.google.lv/*","http://www.google.lv/*","https://www.google.com.ly/*","http://www.google.com.ly/*","https://www.google.co.ma/*","http://www.google.co.ma/*","https://www.google.md/*","http://www.google.md/*","https://www.google.me/*","http://www.google.me/*","https://www.google.mg/*","http://www.google.mg/*","https://www.google.mk/*","http://www.google.mk/*","https://www.google.ml/*","http://www.google.ml/*","https://www.google.com.mm/*","http://www.google.com.mm/*","https://www.google.mn/*","http://www.google.mn/*","https://www.google.ms/*","http://www.google.ms/*","https://www.google.com.mt/*","http://www.google.com.mt/*","https://www.google.mu/*","http://www.google.mu/*","https://www.google.mv/*","http://www.google.mv/*","https://www.google.mw/*","http://www.google.mw/*","https://www.google.com.mx/*","http://www.google.com.mx/*","https://www.google.com.my/*","http://www.google.com.my/*","https://www.google.co.mz/*","http://www.google.co.mz/*","https://www.google.com.na/*","http://www.google.com.na/*","https://www.google.com.ng/*","http://www.google.com.ng/*","https://www.google.com.ni/*","http://www.google.com.ni/*","https://www.google.ne/*","http://www.google.ne/*","https://www.google.nl/*","http://www.google.nl/*","https://www.google.no/*","http://www.google.no/*","https://www.google.com.np/*","http://www.google.com.np/*","https://www.google.nr/*","http://www.google.nr/*","https://www.google.nu/*","http://www.google.nu/*","https://www.google.co.nz/*","http://www.google.co.nz/*","https://www.google.com.om/*","http://www.google.com.om/*","https://www.google.com.pa/*","http://www.google.com.pa/*","https://www.google.com.pe/*","http://www.google.com.pe/*","https://www.google.com.pg/*","http://www.google.com.pg/*","https://www.google.com.ph/*","http://www.google.com.ph/*","https://www.google.com.pk/*","http://www.google.com.pk/*","https://www.google.pl/*","http://www.google.pl/*","https://www.google.pn/*","http://www.google.pn/*","https://www.google.com.pr/*","http://www.google.com.pr/*","https://www.google.ps/*","http://www.google.ps/*","https://www.google.pt/*","http://www.google.pt/*","https://www.google.com.py/*","http://www.google.com.py/*","https://www.google.com.qa/*","http://www.google.com.qa/*","https://www.google.ro/*","http://www.google.ro/*","https://www.google.ru/*","http://www.google.ru/*","https://www.google.rw/*","http://www.google.rw/*","https://www.google.com.sa/*","http://www.google.com.sa/*","https://www.google.com.sb/*","http://www.google.com.sb/*","https://www.google.sc/*","http://www.google.sc/*","https://www.google.se/*","http://www.google.se/*","https://www.google.com.sg/*","http://www.google.com.sg/*","https://www.google.sh/*","http://www.google.sh/*","https://www.google.si/*","http://www.google.si/*","https://www.google.sk/*","http://www.google.sk/*","https://www.google.com.sl/*","http://www.google.com.sl/*","https://www.google.sn/*","http://www.google.sn/*","https://www.google.so/*","http://www.google.so/*","https://www.google.sm/*","http://www.google.sm/*","https://www.google.sr/*","http://www.google.sr/*","https://www.google.st/*","http://www.google.st/*","https://www.google.com.sv/*","http://www.google.com.sv/*","https://www.google.td/*","http://www.google.td/*","https://www.google.tg/*","http://www.google.tg/*","https://www.google.co.th/*","http://www.google.co.th/*","https://www.google.com.tj/*","http://www.google.com.tj/*","https://www.google.tl/*","http://www.google.tl/*","https://www.google.tm/*","http://www.google.tm/*","https://www.google.tn/*","http://www.google.tn/*","https://www.google.to/*","http://www.google.to/*","https://www.google.com.tr/*","http://www.google.com.tr/*","https://www.google.tt/*","http://www.google.tt/*","https://www.google.com.tw/*","http://www.google.com.tw/*","https://www.google.co.tz/*","http://www.google.co.tz/*","https://www.google.com.ua/*","http://www.google.com.ua/*","https://www.google.co.ug/*","http://www.google.co.ug/*","https://www.google.co.uk/*","http://www.google.co.uk/*","https://www.google.com.uy/*","http://www.google.com.uy/*","https://www.google.co.uz/*","http://www.google.co.uz/*","https://www.google.com.vc/*","http://www.google.com.vc/*","https://www.google.co.ve/*","http://www.google.co.ve/*","https://www.google.vg/*","http://www.google.vg/*","https://www.google.co.vi/*","http://www.google.co.vi/*","https://www.google.com.vn/*","http://www.google.com.vn/*","https://www.google.vu/*","http://www.google.vu/*","https://www.google.ws/*","http://www.google.ws/*","https://www.google.rs/*","http://www.google.rs/*","https://www.google.co.za/*","http://www.google.co.za/*","https://www.google.co.zm/*","http://www.google.co.zm/*","https://www.google.co.zw/*","http://www.google.co.zw/*","https://www.google.cat/*","http://www.google.cat/*","https://hangouts.google.com/*","http://hangouts.google.com/*","https://docs.google.com/*","http://docs.google.com/*",""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"icons/badger-16.png","19":"icons/badger-19.png","38":"icons/badger-38.png","48":"icons/badger-48.png","64":"icons/badger-64.png","128":"icons/badger-128.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":null,"recommendationState":{"validNotAfter":1781121557000,"validNotBefore":1623333557000,"states":["recommended","recommended-android"]},"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/jid1-MnnxcxisBPnSXQ@jetpack.xpi!/","location":"app-profile"},{"id":"reset-search-defaults@mozilla.com","syncGUID":"{a086535c-da1d-4d4a-b291-178bbb64a2a4}","version":"2.0.0","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Reset Search Defaults","description":"Ask the user if they would like to use a specified search engine as the default.","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1626193129898,"updateDate":1626193129898,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/features/{ca14a817-0875-4da5-bb2b-ee350585920c}/reset-search-defaults@mozilla.com.xpi","skinnable":false,"sourceURI":"file:///tmp/tmpaddon","releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"81.0","maxVersion":null}],"targetPlatforms":[],"signedState":3,"signedDate":1624465236000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["management"],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":{"source":"system-addon","method":"product-updates"},"recommendationState":null,"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/features/%7Bca14a817-0875-4da5-bb2b-ee350585920c%7D/reset-search-defaults@mozilla.com.xpi!/","location":"app-system-addons"},{"id":"uBlock0@raymondhill.net","syncGUID":"{f70fa12e-f672-41cf-b96c-cfa7eeecb76e}","version":"1.36.2","type":"extension","loader":null,"updateURL":null,"optionsURL":"dashboard.html","optionsType":3,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"uBlock Origin","description":"Finally, an efficient blocker. Easy on CPU and memory.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1542627999000,"updateDate":1626211503294,"applyBackgroundUpdates":1,"path":"/home/tio/.mozilla/firefox/6q5q3muz.default/extensions/uBlock0@raymondhill.net.xpi","skinnable":false,"sourceURI":"https://addons.cdn.mozilla.net/user-media/addons/607454/ublock_origin-1.36.2-an+fx.xpi?filehash=sha256%3A31f8c2126a3f4e3cfe3ef63550b842a5d4f071ec1c6e5aa377c2f29b11ff1415","releaseNotesURI":"https://addons.mozilla.org/versions/updateInfo/5262085/en-US/","softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"uBlock Origin","description":"Finally, an efficient blocker. Easy on CPU and memory.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"uBlock Origin","description":"Finally, an efficient blocker. Easy on CPU and memory.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["oc"]},{"name":"uBlock Origin","description":"Einlik, in effisjinte adblocker. Brûkt hast gjin prosessorkrêft of ûnthâld.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["fy"]},{"name":"uBlock Origin","description":"Най-накрая, ефективен блокер. Щадящ процесора и паметта.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"uBlock Origin","description":"高効率ブロッカーが遂に登場。CPUとメモリーの負担を抑えます。","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"uBlock Origin","description":"Akhirnya, pemblokir iklan yang efisien. Ringan penggunaan CPU dan memori.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"uBlock Origin","description":"Lõpuks on valminud tõhus blokeerija. Protsessori- ja mälusõbralik.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["et"]},{"name":"uBlock Origin","description":"Finalmente, um bloqueador eficiente. Leve na CPU e memória.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["pt-PT"]},{"name":"uBlock Origin","description":"Behingoz, blokeatzaile eraginkor bat. PUZ eta memorian arina.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["eu"]},{"name":"uBlock Origin","description":"ಕೊನೆಗೂ, ಒಂದು ದಕ್ಷ ನಿರ್ಬಂಧಕ. ಮಿತವಾದ ಸಿಪಿಯೂ ಹಾಗು ಮೆಮೊರಿ ಬಳಕೆ.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["kn"]},{"name":"uBlock Origin","description":"Végre egy hatékony reklám- és követésblokkoló böngészőkhöz, amely kíméletes a processzorral és a memóriával.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"uBlock Origin","description":"Ефективний блокувальник реклами таки з’явився. Не навантажує процесор та пам'ять.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"uBlock Origin","description":"Konečně efektivní blokovač. Nezatěžuje CPU a paměť.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["cs"]},{"name":"uBlock Origin","description":"Un bloqueur de nuisances efficace, qui ménagera votre processeur et votre mémoire vive.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"uBlock Origin","description":"Äntligen en effektiv blockerare. Snäll mot både processor och minne.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"uBlock Origin","description":"Finfine rendimenta reklamoblokilo. Afabla por ĉefprocesoro kaj memoro.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["eo"]},{"name":"uBlock Origin","description":"وأخيراً, مانع اعلانات كفوء. خفيف على المعالج و الذاكرة.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ar"]},{"name":"uBlock Origin","description":"Cuối cùng, đã có một công cụ chặn quảng cáo hiệu quả, tiêu tốn ít CPU và bộ nhớ.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["vi"]},{"name":"uBlock Origin","description":"మొత్తానికి RAM ఇంకా CPU పై తేలికయిన, ఒక సమర్థవంతమైన నిరోధిని.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["te"]},{"name":"uBlock Origin","description":"অবশেষে, একটি দক্ষ বিজ্ঞাপন রোধক। সিপিইউ এবং মেমরি সহায়ক।","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["bn"]},{"name":"uBlock Origin","description":"როგორც იქნა, მძლავრი და შედეგიანი რეკლამების შემზღუდავი. ზოგავს CPU-ს და მეხსიერებას.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ka"]},{"name":"uBlock Origin","description":"Endelig en effektiv blokkeringsutvidelse. Lavt CPU- og minnebruk.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["no"]},{"name":"uBlock Origin","description":"Pagaliau, efektyvus blokatorius, neapkraunantis nei procesoriaus, nei darbinės atminties.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["lt"]},{"name":"uBlock Origin","description":"이 부가 기능은 효율적인 차단기입니다. CPU와 메모리에 주는 부담이 적습니다.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"uBlock Origin","description":"आख़िरकार, क्रोमियम-बेस्ड ब्राउज़रों के लिए एक कुशल अवरोधक। CPU और स्मृति पर आसान।","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["hi"]},{"name":"uBlock Origin","description":"இறுதியாக, ஒரு திறமையான விளம்பரத் தடுப்பான். கணினியின் மையச் செயற்பகுதியின் மேலும் நினைவகத்தின் மேலும் இலகுவானது.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ta"]},{"name":"uBlock Origin","description":"Finalmente, un blocker efficiente. Leggero sulla CPU e sulla memoria.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"uBlock Origin","description":"Axır ki, prosessor və yaddaş yükünü azaldan səmərəli bir əngəlləyici var.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["az"]},{"name":"uBlock Origin","description":"آخر کار، ایک مؤثر اشتہار کو روکنے والا، یہ کم cpu اور میموری لیتا ہے.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ur"]},{"name":"uBlock Origin","description":"มาแล้ว! โปรแกรมบล็อกโฆษณาเบาเบา ไม่กิน ซีพียู หรือ แรม","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["th"]},{"name":"uBlock Origin","description":"Endlich ein effizienter Blocker. Prozessor-freundlich und bescheiden beim Speicherbedarf.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"uBlock Origin","description":"शेवटी, एक कार्यक्षम ब्लॉकर क्रोमियम आधारित ब्राउझरांसाठी. सीपीयू आणि मेमरी वर सोपे जातो.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["mr"]},{"name":"uBlock Origin","description":"Finally, an efficient blocker. Easy on CPU and memory.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["en-GB"]},{"name":"uBlock Origin","description":"Më në fund, një bllokues efikas që nuk e rëndon procesorin dhe memorien.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["sq"]},{"name":"uBlock Origin","description":"Ó fin, un bloqueador eficiente que non chupa toda a memoria e o procesador.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["gl"]},{"name":"uBlock Origin","description":"Konečne efektívny blokovač. Nezaťažuje CPU ani pamäť.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["sk"]},{"name":"uBlock Origin","description":"Тинех Интернет тишкерӳҫӗ валли хӑвӑрт та витӗмлӗ чаркӑч пур.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["cv"]},{"name":"uBlock Origin","description":"Коначно, ефикасан блокатор. Ниски процесорски и меморијски захтеви.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["sr"]},{"name":"uBlock Origin","description":"بالاخره، یک بلاکر کارآمد. کم حجم بر روی پردازنده و حافظه.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["fa"]},{"name":"uBlock Origin","description":"അവസാനം, ഒരു കാര്യക്ഷമമായ ബ്ലോക്കര്‍. ലഘുവായ CPU, memory ഉപയോഗം.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ml"]},{"name":"uBlock Origin","description":"Endelig en effektiv blokkeringsutvidelse. Lavt CPU- og minnebruk.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["nb"]},{"name":"uBlock Origin","description":"Finalment, un blocador eficient que utilitza pocs recursos de memòria i processador.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"uBlock Origin","description":"Наконец-то, быстрый и эффективный блокировщик для браузеров.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"uBlock Origin","description":"Nareszcie skuteczny bloker charakteryzujący się niskim użyciem procesora i pamięci.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"uBlock Origin","description":"Beidzot, efektīvs bloķētājs. Nepārslogo procesoru un atmiņu.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["lv"]},{"name":"uBlock Origin","description":"Վերջապե՛ս, արդյունավետ արգելափակիչ։ Խնայում է մշակիչը և հիշողությունը։","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["hy"]},{"name":"uBlock Origin","description":"Жарнамаларды жақсы өшіретін Addon'дардың бірі. Компьютердің қуатың аз алады.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["kk"]},{"name":"uBlock Origin","description":"Konačno, efikasan bloker. Štedljiv na procesoru i memoriji.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["bs"]},{"name":"uBlock Origin","description":"一款高效的网络请求过滤工具,占用极低的内存和 CPU。","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"uBlock Origin","description":"Por fin, un bloqueador eficiente con uso mínimo de procesador y memoria.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"uBlock Origin","description":"În sfârșit, un blocant eficient. Are un impact mic asupra procesorului și memoriei.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ro"]},{"name":"uBlock Origin","description":"Končno, učinkovita, procesorju in pomnilniku prijazna razširitev za blokiranje oglasov.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["sl"]},{"name":"uBlock Origin","description":"Sa wakas! Isang magaling na blocker para sa Chromium-based browsers. Magaan sa CPU at memory.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["fil"]},{"name":"uBlock Origin","description":"Επιτέλους, ένας αποτελεσματικός blocker. Ελαφρύς για τον επεξεργαστή και τη μνήμη.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"uBlock Origin","description":"終於有套使用不多的 CPU 及記憶體資源的高效率阻擋器。","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"uBlock Origin","description":"Akhirnya, penyekat yang cekap. Tidak membebankan CPU dan memori.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ms"]},{"name":"uBlock Origin","description":"Viimeinkin tehokas ja kevyt mainosten estäjä.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"uBlock Origin","description":"Finalmente, um bloqueador eficiente. Com baixo uso de memória e CPU.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"uBlock Origin","description":"Endelig en effektiv blocker. Lavt CPU- og hukommelsesforbrug.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"uBlock Origin","description":"סוף סוף, חוסם יעיל. קל על המעבד והזיכרון.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["he"]},{"name":"uBlock Origin","description":"Konačno, efikasan blokator. Lak na CPU i memoriji.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["hr"]},{"name":"uBlock Origin","description":"Eindelijk, een efficiënte adblocker. Gebruikt weinig processorkracht en geheugen.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"uBlock Origin","description":"Sonunda, etkili bir engelleyici. İşlemciyi ve belleği yormaz.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["tr"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"57.0","maxVersion":null}],"targetPlatforms":[],"signedState":2,"signedDate":1625588266000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["dns","menus","privacy","storage","tabs","unlimitedStorage","webNavigation","webRequest","webRequestBlocking"],"origins":["","http://*/*","https://*/*","file://*/*","https://easylist.to/*","https://*.fanboy.co.nz/*","https://filterlists.com/*","https://forums.lanik.us/*","https://github.com/*","https://*.github.io/*"]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"img/ublock.svg","32":"img/ublock.svg","48":"img/ublock.svg","64":"img/ublock.svg","96":"img/ublock.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{"webRequest":{"onBeforeRequest":[[{"incognito":null,"tabId":null,"types":null,"urls":["moz-extension://90be17cd-7169-4943-9a04-3cd8bf7fec41/web_accessible_resources/*"],"windowId":null},["blocking"]],[{"incognito":null,"tabId":null,"types":null,"urls":["http://*/*","https://*/*","ws://*/*","wss://*/*"],"windowId":null},["blocking"]]]}}},"hidden":false,"installTelemetryInfo":null,"recommendationState":{"validNotAfter":1783376266000,"validNotBefore":1625588266000,"states":["recommended-android","recommended"]},"rootURI":"jar:file:///home/tio/.mozilla/firefox/6q5q3muz.default/extensions/uBlock0@raymondhill.net.xpi!/","location":"app-profile"}]} \ No newline at end of file diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/jid1-MnnxcxisBPnSXQ@jetpack.xpi b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/jid1-MnnxcxisBPnSXQ@jetpack.xpi index 5b9a4eba..464391d2 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/jid1-MnnxcxisBPnSXQ@jetpack.xpi and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/jid1-MnnxcxisBPnSXQ@jetpack.xpi differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/uBlock0@raymondhill.net.xpi b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/uBlock0@raymondhill.net.xpi index 6ee93a37..ba95fe0d 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/uBlock0@raymondhill.net.xpi and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/uBlock0@raymondhill.net.xpi differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/{b7f9d2cd-d772-4302-8c3f-eb941af36f76}.xpi b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/{b7f9d2cd-d772-4302-8c3f-eb941af36f76}.xpi index 8b11a20f..922627b9 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/{b7f9d2cd-d772-4302-8c3f-eb941af36f76}.xpi and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/{b7f9d2cd-d772-4302-8c3f-eb941af36f76}.xpi differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/{b9db16a4-6edc-47ec-a1f4-b86292ed211d}.xpi b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/{b9db16a4-6edc-47ec-a1f4-b86292ed211d}.xpi index 4eb7a02e..e1b218ae 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/{b9db16a4-6edc-47ec-a1f4-b86292ed211d}.xpi and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/extensions/{b9db16a4-6edc-47ec-a1f4-b86292ed211d}.xpi differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/favicons.sqlite b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/favicons.sqlite index 05ca704e..09e86c26 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/favicons.sqlite and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/favicons.sqlite differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/features/{ca14a817-0875-4da5-bb2b-ee350585920c}/reset-search-defaults@mozilla.com.xpi b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/features/{ca14a817-0875-4da5-bb2b-ee350585920c}/reset-search-defaults@mozilla.com.xpi new file mode 100644 index 00000000..0aa7e1aa Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/features/{ca14a817-0875-4da5-bb2b-ee350585920c}/reset-search-defaults@mozilla.com.xpi differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/formhistory.sqlite b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/formhistory.sqlite index 7efae9c4..7ac6bc30 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/formhistory.sqlite and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/formhistory.sqlite differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/permissions.sqlite b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/permissions.sqlite index 73347b6f..963ce465 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/permissions.sqlite and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/permissions.sqlite differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/places.sqlite b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/places.sqlite index 88e726d0..03373a47 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/places.sqlite and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/places.sqlite differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/prefs.js b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/prefs.js index 0b5bc14c..de6f3546 100644 --- a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/prefs.js +++ b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/prefs.js @@ -21,16 +21,16 @@ user_pref("app.normandy.startupRolloutPrefs.network.http.http3.enabled", true); user_pref("app.normandy.startupRolloutPrefs.services.sync.bookmarks.buffer.enabled", true); user_pref("app.normandy.user_id", "f6151ad0-fece-4d81-9d5c-67449843ccf0"); user_pref("app.shield.optoutstudies.enabled", false); -user_pref("app.update.lastUpdateTime.addon-background-update-timer", 1623205116); +user_pref("app.update.lastUpdateTime.addon-background-update-timer", 1626193127); user_pref("app.update.lastUpdateTime.blocklist-background-update-timer", 1588540518); -user_pref("app.update.lastUpdateTime.browser-cleanup-thumbnails", 1623247836); -user_pref("app.update.lastUpdateTime.recipe-client-addon-run", 1623248076); -user_pref("app.update.lastUpdateTime.region-update-timer", 1623205356); +user_pref("app.update.lastUpdateTime.browser-cleanup-thumbnails", 1626211533); +user_pref("app.update.lastUpdateTime.recipe-client-addon-run", 1626192534); +user_pref("app.update.lastUpdateTime.region-update-timer", 1626193367); user_pref("app.update.lastUpdateTime.rs-experiment-loader-timer", 1608565076); -user_pref("app.update.lastUpdateTime.search-engine-update-timer", 1623247956); -user_pref("app.update.lastUpdateTime.services-settings-poll-changes", 1623204996); +user_pref("app.update.lastUpdateTime.search-engine-update-timer", 1626192748); +user_pref("app.update.lastUpdateTime.services-settings-poll-changes", 1626193007); user_pref("app.update.lastUpdateTime.telemetry_modules_ping", 1573002408); -user_pref("app.update.lastUpdateTime.xpi-signature-verification", 1623205236); +user_pref("app.update.lastUpdateTime.xpi-signature-verification", 1626193247); user_pref("browser.bookmarks.defaultLocation", "unfiled"); user_pref("browser.bookmarks.restore_default_bookmarks", false); user_pref("browser.cache.disk.amount_written", 1754406); @@ -53,6 +53,10 @@ user_pref("browser.messaging-system.whatsNewPanel.enabled", false); user_pref("browser.migration.version", 109); user_pref("browser.newtab.extensionControlled", true); user_pref("browser.newtab.privateAllowed", true); +user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.addons", false); +user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features", false); +user_pref("browser.newtabpage.activity-stream.feeds.section.topstories", false); +user_pref("browser.newtabpage.activity-stream.feeds.topsites", false); user_pref("browser.newtabpage.activity-stream.impressionId", "{7b66b9fa-c166-4db7-9cd2-1f61e10923fd}"); user_pref("browser.newtabpage.activity-stream.improvesearch.topSiteSearchShortcuts.havePinned", "google,amazon"); user_pref("browser.newtabpage.activity-stream.migrationExpired", true); @@ -63,25 +67,25 @@ user_pref("browser.newtabpage.storageVersion", 1); user_pref("browser.pageActions.persistedActions", "{\"version\":1,\"ids\":[\"bookmark\"],\"idsInUrlbar\":[\"bookmark\"],\"idsInUrlbarPreProton\":[\"bookmark\"]}"); user_pref("browser.pagethumbnails.storage_version", 3); user_pref("browser.proton.toolbar.version", 3); -user_pref("browser.region.update.updated", 1623205357); +user_pref("browser.region.update.updated", 1626193368); user_pref("browser.rights.3.shown", true); -user_pref("browser.safebrowsing.provider.google4.lastupdatetime", "1623247818068"); -user_pref("browser.safebrowsing.provider.google4.nextupdatetime", "1623249639068"); -user_pref("browser.safebrowsing.provider.mozilla.lastupdatetime", "1623247820209"); -user_pref("browser.safebrowsing.provider.mozilla.nextupdatetime", "1623269420209"); +user_pref("browser.safebrowsing.provider.google4.lastupdatetime", "1626211508461"); +user_pref("browser.safebrowsing.provider.google4.nextupdatetime", "1626213287461"); +user_pref("browser.safebrowsing.provider.mozilla.lastupdatetime", "1626192543217"); +user_pref("browser.safebrowsing.provider.mozilla.nextupdatetime", "1626214143217"); user_pref("browser.search.region", "GB"); -user_pref("browser.sessionstore.upgradeBackup.latestBuildID", "20210531160138"); +user_pref("browser.sessionstore.upgradeBackup.latestBuildID", "20210623174607"); user_pref("browser.shell.checkDefaultBrowser", true); user_pref("browser.shell.didSkipDefaultBrowserCheckOnFirstRun", true); -user_pref("browser.shell.mostRecentDateSetAsDefault", "1623248212"); +user_pref("browser.shell.mostRecentDateSetAsDefault", "1626211505"); user_pref("browser.slowStartup.averageTime", 1565); user_pref("browser.slowStartup.samples", 1); user_pref("browser.startup.homepage", "moz-extension://f393b4c4-359a-4d1e-b377-fd4b41112e16/index.html"); -user_pref("browser.startup.homepage_override.buildID", "20210531160138"); +user_pref("browser.startup.homepage_override.buildID", "20210623174607"); user_pref("browser.startup.homepage_override.extensionControlled", true); -user_pref("browser.startup.homepage_override.mstone", "89.0"); +user_pref("browser.startup.homepage_override.mstone", "89.0.2"); user_pref("browser.startup.homepage_override.privateAllowed", true); -user_pref("browser.startup.lastColdStartupCheck", 1623248211); +user_pref("browser.startup.lastColdStartupCheck", 1626211504); user_pref("browser.startup.page", 3); user_pref("browser.tabs.drawInTitlebar", false); user_pref("browser.tabs.extraDragSpace", true); @@ -104,7 +108,7 @@ user_pref("devtools.toolsidebar-width.inspector.splitsidebar", 350); user_pref("devtools.webextensions.https-everywhere@eff.org.enabled", true); user_pref("distribution.Manjaro.bookmarksProcessed", true); user_pref("distribution.archlinux.bookmarksProcessed", true); -user_pref("distribution.iniFile.exists.appversion", "89.0"); +user_pref("distribution.iniFile.exists.appversion", "89.0.2"); user_pref("distribution.iniFile.exists.value", true); user_pref("distribution.manjaro.bookmarksProcessed", true); user_pref("doh-rollout.balrog-migration-done", true); @@ -112,7 +116,7 @@ user_pref("doh-rollout.doneFirstRun", true); user_pref("doh-rollout.doorhanger-decision", "UIOk"); user_pref("doh-rollout.mode", 2); user_pref("doh-rollout.self-enabled", true); -user_pref("dom.push.userAgentID", "3dbc7bc986c9493cb7eea97954991b15"); +user_pref("dom.push.userAgentID", "ce13d9558dac4cab8dff17b5d4505b45"); user_pref("dom.security.https_only_mode", true); user_pref("dom.security.https_only_mode_ever_enabled", true); user_pref("extensions.activeThemeID", "default-theme@mozilla.org"); @@ -120,20 +124,21 @@ user_pref("extensions.blocklist.lastModified", "Sat, 09 Nov 2019 17:49:50 GMT"); user_pref("extensions.blocklist.pingCountTotal", 34); user_pref("extensions.blocklist.pingCountVersion", -1); user_pref("extensions.databaseSchema", 33); -user_pref("extensions.getAddons.cache.lastUpdate", 1623205117); +user_pref("extensions.getAddons.cache.lastUpdate", 1626193128); user_pref("extensions.getAddons.databaseSchema", 6); user_pref("extensions.htmlaboutaddons.recommendations.enabled", false); user_pref("extensions.incognito.migrated", true); -user_pref("extensions.lastAppBuildId", "20210531160138"); -user_pref("extensions.lastAppVersion", "89.0"); -user_pref("extensions.lastPlatformVersion", "89.0"); +user_pref("extensions.lastAppBuildId", "20210623174607"); +user_pref("extensions.lastAppVersion", "89.0.2"); +user_pref("extensions.lastPlatformVersion", "89.0.2"); user_pref("extensions.pendingOperations", false); user_pref("extensions.pictureinpicture.enable_picture_in_picture_overrides", true); user_pref("extensions.pocket.enabled", false); user_pref("extensions.pocket.settings.test.panelSignUp", "control"); user_pref("extensions.reset_default_search.runonce.1", true); -user_pref("extensions.reset_default_search.runonce.3", false); -user_pref("extensions.systemAddonSet", "{\"schema\":1,\"addons\":{}}"); +user_pref("extensions.reset_default_search.runonce.3", true); +user_pref("extensions.reset_default_search.runonce.reason", "previousRun"); +user_pref("extensions.systemAddonSet", "{\"schema\":1,\"directory\":\"{ca14a817-0875-4da5-bb2b-ee350585920c}\",\"addons\":{\"reset-search-defaults@mozilla.com\":{\"version\":\"2.0.0\"}}}"); user_pref("extensions.ui.dictionary.hidden", true); user_pref("extensions.ui.extension.hidden", false); user_pref("extensions.ui.lastCategory", "addons://list/extension"); @@ -165,15 +170,15 @@ user_pref("gfx.blacklist.layers.opengl", 4); user_pref("gfx.blacklist.layers.opengl.failureid", "FEATURE_FAILURE_SOFTWARE_GL"); user_pref("identity.fxaccounts.enabled", false); user_pref("identity.fxaccounts.toolbar.accessed", true); -user_pref("idle.lastDailyNotification", 1623204767); +user_pref("idle.lastDailyNotification", 1626193260); user_pref("lightweightThemes.usedThemes", "[]"); user_pref("media.benchmark.vp9.fps", 102); user_pref("media.benchmark.vp9.versioncheck", 5); user_pref("media.gmp-gmpopenh264.abi", "x86_64-gcc3"); user_pref("media.gmp-gmpopenh264.lastUpdate", 1572996640); user_pref("media.gmp-gmpopenh264.version", "1.8.1.1"); -user_pref("media.gmp-manager.buildID", "20210531160138"); -user_pref("media.gmp-manager.lastCheck", 1623204706); +user_pref("media.gmp-manager.buildID", "20210623174607"); +user_pref("media.gmp-manager.lastCheck", 1626193195); user_pref("media.gmp.storage.version.observed", 1); user_pref("network.cookie.cookieBehavior", 5); user_pref("network.dns.disablePrefetch", true); @@ -186,60 +191,60 @@ user_pref("pdfjs.enabledCache.state", true); user_pref("pdfjs.migrationVersion", 2); user_pref("pdfjs.previousHandler.alwaysAskBeforeHandling", true); user_pref("pdfjs.previousHandler.preferredAction", 4); -user_pref("places.database.lastMaintenance", 1623204767); +user_pref("places.database.lastMaintenance", 1626193261); user_pref("places.history.expiration.transient_current_max_pages", 112348); user_pref("plugin.disable_full_page_plugin_for_types", "application/pdf"); user_pref("privacy.annotate_channels.strict_list.enabled", true); user_pref("privacy.cpd.offlineApps", true); user_pref("privacy.cpd.siteSettings", true); user_pref("privacy.purge_trackers.date_in_cookie_database", "0"); -user_pref("privacy.purge_trackers.last_purge", "1623204767015"); +user_pref("privacy.purge_trackers.last_purge", "1626193260882"); user_pref("privacy.sanitize.pending", "[]"); user_pref("privacy.sanitize.timeSpan", 0); user_pref("privacy.trackingprotection.enabled", true); user_pref("privacy.trackingprotection.socialtracking.enabled", true); -user_pref("security.remote_settings.crlite_filters.checked", 1623229525); -user_pref("security.remote_settings.intermediates.checked", 1623207911); +user_pref("security.remote_settings.crlite_filters.checked", 1626193581); +user_pref("security.remote_settings.intermediates.checked", 1626193581); user_pref("security.sandbox.content.tempDirSuffix", "62ec57d4-3516-41bf-957e-19cd307d5b61"); user_pref("security.sandbox.plugin.tempDirSuffix", "851284ee-3855-4de7-86af-976adc3a2c11"); -user_pref("services.blocklist.addons-mlbf.checked", 1623204996); +user_pref("services.blocklist.addons-mlbf.checked", 1626211506); user_pref("services.blocklist.addons.checked", 1598664411); -user_pref("services.blocklist.gfx.checked", 1623204996); +user_pref("services.blocklist.gfx.checked", 1626211506); user_pref("services.blocklist.onecrl.checked", 1565793602); -user_pref("services.blocklist.pinning.checked", 1623204996); +user_pref("services.blocklist.pinning.checked", 1626193581); user_pref("services.blocklist.plugins.checked", 1618001769); user_pref("services.settings.clock_skew_seconds", 0); -user_pref("services.settings.last_etag", "\"1623229070533\""); -user_pref("services.settings.last_update_seconds", 1623229525); -user_pref("services.settings.main.anti-tracking-url-decoration.last_check", 1623204996); -user_pref("services.settings.main.cfr-fxa.last_check", 1623204996); -user_pref("services.settings.main.cfr.last_check", 1623204996); -user_pref("services.settings.main.fxmonitor-breaches.last_check", 1623204996); -user_pref("services.settings.main.hijack-blocklists.last_check", 1623204996); -user_pref("services.settings.main.language-dictionaries.last_check", 1623204996); -user_pref("services.settings.main.message-groups.last_check", 1623204996); +user_pref("services.settings.last_etag", "\"1626209888341\""); +user_pref("services.settings.last_update_seconds", 1626211506); +user_pref("services.settings.main.anti-tracking-url-decoration.last_check", 1626211506); +user_pref("services.settings.main.cfr-fxa.last_check", 1626211506); +user_pref("services.settings.main.cfr.last_check", 1626211506); +user_pref("services.settings.main.fxmonitor-breaches.last_check", 1626211506); +user_pref("services.settings.main.hijack-blocklists.last_check", 1626211506); +user_pref("services.settings.main.language-dictionaries.last_check", 1626211506); +user_pref("services.settings.main.message-groups.last_check", 1626211506); user_pref("services.settings.main.messaging-experiments.last_check", 1604995344); -user_pref("services.settings.main.nimbus-desktop-experiments.last_check", 1623204996); -user_pref("services.settings.main.normandy-recipes-capabilities.last_check", 1623204996); +user_pref("services.settings.main.nimbus-desktop-experiments.last_check", 1626211506); +user_pref("services.settings.main.normandy-recipes-capabilities.last_check", 1626211506); user_pref("services.settings.main.normandy-recipes.last_check", 1573409021); user_pref("services.settings.main.onboarding.last_check", 1565793602); -user_pref("services.settings.main.partitioning-exempt-urls.last_check", 1623204996); -user_pref("services.settings.main.password-recipes.last_check", 1623204996); -user_pref("services.settings.main.personality-provider-models.last_check", 1623204996); -user_pref("services.settings.main.personality-provider-recipe.last_check", 1623204996); -user_pref("services.settings.main.pioneer-study-addons-v1.last_check", 1623204996); -user_pref("services.settings.main.pioneer-study-addons.last_check", 1623204996); -user_pref("services.settings.main.public-suffix-list.last_check", 1623204996); -user_pref("services.settings.main.search-config.last_check", 1623204996); -user_pref("services.settings.main.search-default-override-allowlist.last_check", 1623204996); -user_pref("services.settings.main.search-telemetry.last_check", 1623204996); -user_pref("services.settings.main.sites-classification.last_check", 1623204996); -user_pref("services.settings.main.tippytop.last_check", 1623204996); -user_pref("services.settings.main.top-sites.last_check", 1623204996); -user_pref("services.settings.main.url-classifier-skip-urls.last_check", 1623204996); -user_pref("services.settings.main.websites-with-shared-credential-backends.last_check", 1623204996); -user_pref("services.settings.main.whats-new-panel.last_check", 1623204996); -user_pref("services.settings.security.onecrl.checked", 1623204996); +user_pref("services.settings.main.partitioning-exempt-urls.last_check", 1626211506); +user_pref("services.settings.main.password-recipes.last_check", 1626211506); +user_pref("services.settings.main.personality-provider-models.last_check", 1626211506); +user_pref("services.settings.main.personality-provider-recipe.last_check", 1626211506); +user_pref("services.settings.main.pioneer-study-addons-v1.last_check", 1626211506); +user_pref("services.settings.main.pioneer-study-addons.last_check", 1626211506); +user_pref("services.settings.main.public-suffix-list.last_check", 1626211506); +user_pref("services.settings.main.search-config.last_check", 1626211506); +user_pref("services.settings.main.search-default-override-allowlist.last_check", 1626211506); +user_pref("services.settings.main.search-telemetry.last_check", 1626211506); +user_pref("services.settings.main.sites-classification.last_check", 1626211506); +user_pref("services.settings.main.tippytop.last_check", 1626211506); +user_pref("services.settings.main.top-sites.last_check", 1626211506); +user_pref("services.settings.main.url-classifier-skip-urls.last_check", 1626211506); +user_pref("services.settings.main.websites-with-shared-credential-backends.last_check", 1626211506); +user_pref("services.settings.main.whats-new-panel.last_check", 1626211506); +user_pref("services.settings.security.onecrl.checked", 1626193581); user_pref("services.sync.clients.lastSync", "0"); user_pref("services.sync.declinedEngines", ""); user_pref("services.sync.globalScore", 0); @@ -248,8 +253,8 @@ user_pref("services.sync.tabs.lastSync", "0"); user_pref("signon.importedFromSqlite", true); user_pref("signon.usage.hasEntry", false); user_pref("storage.vacuum.last.index", 0); -user_pref("storage.vacuum.last.places.sqlite", 1623204767); -user_pref("toolkit.startup.last_success", 1623248209); +user_pref("storage.vacuum.last.places.sqlite", 1626193260); +user_pref("toolkit.startup.last_success", 1626211502); user_pref("toolkit.telemetry.archive.enabled", false); user_pref("toolkit.telemetry.bhrPing.enabled", false); user_pref("toolkit.telemetry.cachedClientID", "c0ffeec0-ffee-c0ff-eec0-ffeec0ffeec0"); diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/protections.sqlite b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/protections.sqlite index 103a7756..8f8a6868 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/protections.sqlite and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/protections.sqlite differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/search.json.mozlz4 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/search.json.mozlz4 index 68d67f8e..3531754f 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/search.json.mozlz4 and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/search.json.mozlz4 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/security_state/data.safe.bin b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/security_state/data.safe.bin index 2f8883b2..d66d9641 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/security_state/data.safe.bin and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/security_state/data.safe.bin differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/sessionstore.jsonlz4 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/sessionstore.jsonlz4 index 28e62b3f..d83cd698 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/sessionstore.jsonlz4 and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/sessionstore.jsonlz4 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage-sync-v2.sqlite-shm b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage-sync-v2.sqlite-shm index a5edf97d..34e47dad 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage-sync-v2.sqlite-shm and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage-sync-v2.sqlite-shm differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage-sync-v2.sqlite-wal b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage-sync-v2.sqlite-wal index aa68d29b..687ffa2b 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage-sync-v2.sqlite-wal and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage-sync-v2.sqlite-wal differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage.sqlite b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage.sqlite index a275772b..fd2b694b 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage.sqlite and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage.sqlite differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++256c7ceb-2fd8-4e47-bdc3-cb06c28a2511^userContextId=4294967295/.metadata-v2 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++256c7ceb-2fd8-4e47-bdc3-cb06c28a2511^userContextId=4294967295/.metadata-v2 index d4f32b46..e2ca0ebd 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++256c7ceb-2fd8-4e47-bdc3-cb06c28a2511^userContextId=4294967295/.metadata-v2 and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++256c7ceb-2fd8-4e47-bdc3-cb06c28a2511^userContextId=4294967295/.metadata-v2 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++256c7ceb-2fd8-4e47-bdc3-cb06c28a2511^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++256c7ceb-2fd8-4e47-bdc3-cb06c28a2511^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite index e8301f70..025f142e 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++256c7ceb-2fd8-4e47-bdc3-cb06c28a2511^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++256c7ceb-2fd8-4e47-bdc3-cb06c28a2511^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++26d6ad01-a771-4b46-9e35-342122037141^userContextId=4294967295/.metadata-v2 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++26d6ad01-a771-4b46-9e35-342122037141^userContextId=4294967295/.metadata-v2 index 97781959..5b6aae17 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++26d6ad01-a771-4b46-9e35-342122037141^userContextId=4294967295/.metadata-v2 and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++26d6ad01-a771-4b46-9e35-342122037141^userContextId=4294967295/.metadata-v2 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++5fa9f4d9-b1b6-436a-976d-16c0d1f6a207^userContextId=4294967295/.metadata-v2 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++5fa9f4d9-b1b6-436a-976d-16c0d1f6a207^userContextId=4294967295/.metadata-v2 index 2b78bed8..a1ece752 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++5fa9f4d9-b1b6-436a-976d-16c0d1f6a207^userContextId=4294967295/.metadata-v2 and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++5fa9f4d9-b1b6-436a-976d-16c0d1f6a207^userContextId=4294967295/.metadata-v2 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/.metadata-v2 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/.metadata-v2 index 3382b6bf..123e5b50 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/.metadata-v2 and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/.metadata-v2 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/806 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/806 deleted file mode 100644 index acd1c987..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/806 and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/807 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/807 deleted file mode 100644 index d5641e87..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/807 and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/808 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/808 deleted file mode 100644 index 33f418fd..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/808 and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/809 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/809 deleted file mode 100644 index 75ff5a0f..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/809 and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/811 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/811 deleted file mode 100644 index d4a61647..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/811 and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/812 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/812 deleted file mode 100644 index 0d6581c3..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/812 and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/813 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/813 deleted file mode 100644 index fa01e6f8..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/813 and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/816 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/816 deleted file mode 100644 index cfa3e2e8..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/816 and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/817 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/817 deleted file mode 100644 index 7bc6cc68..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/817 and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/818 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/818 deleted file mode 100644 index 9d2eb1a6..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/818 and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/819 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/819 deleted file mode 100644 index 1a52be6b..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/819 and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/820 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/820 deleted file mode 100644 index 750d3ee7..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/820 and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/821 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/821 deleted file mode 100644 index 03bd580d..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/821 and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/822 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/822 deleted file mode 100644 index 1e126501..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/822 and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/823 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/823 deleted file mode 100644 index 9acc3a5c..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/823 and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/824 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/824 deleted file mode 100644 index 44d58a5a..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/824 and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/825 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/825 deleted file mode 100644 index 8e6e61c4..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/825 and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/826 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/826 deleted file mode 100644 index 45e2ab70..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/826 and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/836 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/836 deleted file mode 100644 index 3013d6ea..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/836 and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/837 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/837 deleted file mode 100644 index 3c58966a..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/837 and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/838 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/838 deleted file mode 100644 index d693c85c..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/838 and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/839 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/839 deleted file mode 100644 index 9f23ea43..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/839 and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/840 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/840 deleted file mode 100644 index 160b9108..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/840 and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/841 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/841 deleted file mode 100644 index f3d83858..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/841 and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/842 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/842 deleted file mode 100644 index 2f26adaf..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/842 and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/843 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/843 deleted file mode 100644 index 0540c6b2..00000000 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/843 and /dev/null differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/844 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/844 new file mode 100644 index 00000000..719e92e3 Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/844 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/845 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/845 new file mode 100644 index 00000000..26f122e2 Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/845 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/846 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/846 new file mode 100644 index 00000000..0da30d5a Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/846 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/847 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/847 new file mode 100644 index 00000000..d0fced3e Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/847 differ diff --git a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/810 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/848 similarity index 66% rename from tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/810 rename to tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/848 index 2d912067..e2dd12c9 100644 Binary files a/tromjaro/gnome/desktop-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/810 and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/848 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/849 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/849 new file mode 100644 index 00000000..6dd10a32 Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/849 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/850 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/850 new file mode 100644 index 00000000..557f5e7a Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/850 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/851 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/851 new file mode 100644 index 00000000..576b4735 Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/851 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/814 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/852 similarity index 100% rename from tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/814 rename to tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/852 diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/815 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/853 similarity index 100% rename from tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/815 rename to tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/853 diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/854 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/854 new file mode 100644 index 00000000..b2670af6 Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/854 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/855 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/855 new file mode 100644 index 00000000..48903d83 Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/855 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/856 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/856 new file mode 100644 index 00000000..44351286 Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/856 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/857 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/857 new file mode 100644 index 00000000..9c81288d Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/857 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/858 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/858 new file mode 100644 index 00000000..6275d071 Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/858 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/859 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/859 new file mode 100644 index 00000000..4e0765dc Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/859 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/860 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/860 new file mode 100644 index 00000000..5ab06ad6 Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/860 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/861 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/861 new file mode 100644 index 00000000..922fd760 Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/861 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/862 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/862 new file mode 100644 index 00000000..7ddc5a74 Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/862 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/863 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/863 new file mode 100644 index 00000000..54af25b3 Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/863 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/864 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/864 new file mode 100644 index 00000000..72aafd51 Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/864 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/827 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/865 similarity index 100% rename from tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/827 rename to tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/865 diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/828 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/866 similarity index 100% rename from tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/828 rename to tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/866 diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/867 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/867 new file mode 100644 index 00000000..dd073e9e Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/867 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/868 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/868 new file mode 100644 index 00000000..e047f1ab Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/868 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/869 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/869 new file mode 100644 index 00000000..eea30e9c Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/869 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/870 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/870 new file mode 100644 index 00000000..bb780f86 Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/870 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/871 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/871 new file mode 100644 index 00000000..917aa330 Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/871 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/872 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/872 new file mode 100644 index 00000000..43953118 Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/872 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/873 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/873 new file mode 100644 index 00000000..c6915e37 Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/873 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/874 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/874 new file mode 100644 index 00000000..f9bf8158 Binary files /dev/null and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.files/874 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.sqlite b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.sqlite index 7b6d20c4..1bc76c71 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.sqlite and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41/idb/1671402671ueBglaorcokt0SCeahc.sqlite differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41^userContextId=4294967295/.metadata-v2 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41^userContextId=4294967295/.metadata-v2 index 7c2d8496..5a7e7fe1 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41^userContextId=4294967295/.metadata-v2 and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41^userContextId=4294967295/.metadata-v2 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite index 531c1ef0..5276f73e 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++90be17cd-7169-4943-9a04-3cd8bf7fec41^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++ac01c99c-ee6d-49f3-bbce-5ef76b0c7c04^userContextId=4294967295/.metadata-v2 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++ac01c99c-ee6d-49f3-bbce-5ef76b0c7c04^userContextId=4294967295/.metadata-v2 index 7eb34018..108f9c56 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++ac01c99c-ee6d-49f3-bbce-5ef76b0c7c04^userContextId=4294967295/.metadata-v2 and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++ac01c99c-ee6d-49f3-bbce-5ef76b0c7c04^userContextId=4294967295/.metadata-v2 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++ac01c99c-ee6d-49f3-bbce-5ef76b0c7c04^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++ac01c99c-ee6d-49f3-bbce-5ef76b0c7c04^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite index b07427c1..2486ec14 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++ac01c99c-ee6d-49f3-bbce-5ef76b0c7c04^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++ac01c99c-ee6d-49f3-bbce-5ef76b0c7c04^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++d439fe79-e9bd-449b-b9ec-cc2b271f80c0^userContextId=4294967295/.metadata-v2 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++d439fe79-e9bd-449b-b9ec-cc2b271f80c0^userContextId=4294967295/.metadata-v2 index 405c58b2..966f6794 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++d439fe79-e9bd-449b-b9ec-cc2b271f80c0^userContextId=4294967295/.metadata-v2 and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++d439fe79-e9bd-449b-b9ec-cc2b271f80c0^userContextId=4294967295/.metadata-v2 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++d439fe79-e9bd-449b-b9ec-cc2b271f80c0^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++d439fe79-e9bd-449b-b9ec-cc2b271f80c0^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite index 2bfef7d2..efe5770f 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++d439fe79-e9bd-449b-b9ec-cc2b271f80c0^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++d439fe79-e9bd-449b-b9ec-cc2b271f80c0^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++dbb00a92-98b5-481a-8acc-56821f5c1539^userContextId=4294967295/.metadata-v2 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++dbb00a92-98b5-481a-8acc-56821f5c1539^userContextId=4294967295/.metadata-v2 index a06621ad..a08a817c 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++dbb00a92-98b5-481a-8acc-56821f5c1539^userContextId=4294967295/.metadata-v2 and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++dbb00a92-98b5-481a-8acc-56821f5c1539^userContextId=4294967295/.metadata-v2 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++f393b4c4-359a-4d1e-b377-fd4b41112e16^userContextId=4294967295/.metadata-v2 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++f393b4c4-359a-4d1e-b377-fd4b41112e16^userContextId=4294967295/.metadata-v2 index a675b2a9..425d24ce 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++f393b4c4-359a-4d1e-b377-fd4b41112e16^userContextId=4294967295/.metadata-v2 and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/default/moz-extension+++f393b4c4-359a-4d1e-b377-fd4b41112e16^userContextId=4294967295/.metadata-v2 differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/1059394878bslnoicgkullipsFt2s%.sqlite b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/1059394878bslnoicgkullipsFt2s%.sqlite index 008b40c6..44839327 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/1059394878bslnoicgkullipsFt2s%.sqlite and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/1059394878bslnoicgkullipsFt2s%.sqlite differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/1657114595AmcateirvtiSty.sqlite b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/1657114595AmcateirvtiSty.sqlite index c72f81e4..c1b40e79 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/1657114595AmcateirvtiSty.sqlite and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/1657114595AmcateirvtiSty.sqlite differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/1725441852bxlfogcFk2l%isst.sqlite b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/1725441852bxlfogcFk2l%isst.sqlite index fbd664fd..c3a2db43 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/1725441852bxlfogcFk2l%isst.sqlite and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/1725441852bxlfogcFk2l%isst.sqlite differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/3345959086bslnoocdkdlaiFs2t%s.sqlite b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/3345959086bslnoocdkdlaiFs2t%s.sqlite index c5b8f5db..879136cf 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/3345959086bslnoocdkdlaiFs2t%s.sqlite and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/3345959086bslnoocdkdlaiFs2t%s.sqlite differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/3870112724rsegmnoittet-es.sqlite b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/3870112724rsegmnoittet-es.sqlite index e8fb4178..9af3a92a 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/3870112724rsegmnoittet-es.sqlite and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/3870112724rsegmnoittet-es.sqlite differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/727688008bsleotcakcliifsittsr%.sqlite b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/727688008bsleotcakcliifsittsr%.sqlite index 19fb0261..8607a2b3 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/727688008bsleotcakcliifsittsr%.sqlite and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/storage/permanent/chrome/idb/727688008bsleotcakcliifsittsr%.sqlite differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/webappsstore.sqlite b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/webappsstore.sqlite index f1e8ea65..04c717ca 100644 Binary files a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/webappsstore.sqlite and b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/webappsstore.sqlite differ diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/xulstore.json b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/xulstore.json index 36dd1ebc..bbdb534a 100644 --- a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/xulstore.json +++ b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/6q5q3muz.default/xulstore.json @@ -1 +1 @@ -{"chrome://browser/content/browser.xhtml":{"main-window":{"screenX":"236","screenY":"60","width":"1599","height":"891","sizemode":"normal"},"sidebar-box":{"sidebarcommand":"viewBookmarksSidebar","width":""},"sidebar-title":{"value":"Bookmarks"}},"chrome://browser/content/places/places.xhtml":{"placesContentTags":{"ordinal":"3"},"placesContentUrl":{"ordinal":"5"},"placesContentDate":{"ordinal":"7","sortDirection":"descending"},"placesContentVisitCount":{"ordinal":"9"},"placesContentDateAdded":{"ordinal":"11"},"placesContentLastModified":{"ordinal":"13"},"places":{"screenX":"605","screenY":"267","width":"700","height":"500","sizemode":"normal"}},"chrome://browser/content/sanitize.xhtml":{"SanitizeDialog":{"screenX":"527","screenY":"218"}},"chrome://mozapps/content/downloads/unknownContentType.xhtml":{"unknownContentTypeWindow":{"screenX":"527","screenY":"254"}}} \ No newline at end of file +{"chrome://browser/content/browser.xhtml":{"main-window":{"screenX":"198","screenY":"89","width":"1459","height":"891","sizemode":"normal"},"sidebar-box":{"sidebarcommand":"viewBookmarksSidebar","width":""},"sidebar-title":{"value":"Bookmarks"}},"chrome://browser/content/places/places.xhtml":{"placesContentTags":{"ordinal":"3"},"placesContentUrl":{"ordinal":"5"},"placesContentDate":{"ordinal":"7","sortDirection":"descending"},"placesContentVisitCount":{"ordinal":"9"},"placesContentDateAdded":{"ordinal":"11"},"placesContentLastModified":{"ordinal":"13"},"places":{"screenX":"636","screenY":"291","width":"700","height":"500","sizemode":"normal"}},"chrome://browser/content/sanitize.xhtml":{"SanitizeDialog":{"screenX":"457","screenY":"218"}},"chrome://mozapps/content/downloads/unknownContentType.xhtml":{"unknownContentTypeWindow":{"screenX":"527","screenY":"254"}}} \ No newline at end of file diff --git a/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/Crash Reports/InstallTime20210623174607 b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/Crash Reports/InstallTime20210623174607 new file mode 100644 index 00000000..ba7631a0 --- /dev/null +++ b/tromjaro/gnome/live-overlay/etc/skel/.mozilla/firefox/Crash Reports/InstallTime20210623174607 @@ -0,0 +1 @@ +1626192524 \ No newline at end of file