diff --git a/README.md b/README.md index 64abdcb..e189df2 100644 --- a/README.md +++ b/README.md @@ -1,27 +1,30 @@ # SVPROGNU -Système d'exploitation x64 - 100% GNU basé sur Debian 11 (Bullseye) +Système d'exploitation 64 bits - 100% GNU basé sur Debian 12 (Bookworm) ## Installation (root) ### Créer clef usb + persistence **Attention ! La clef ne doit pas être montée par un autre processus (explorateur de fichiers, utilitaire d'auto-mount...) - +* Cloner le dépot +``` +git clone https://git.vermeulen.pro/SVPRO/svprognu.git && cd svprognu +``` * Si vous avez déjà téléchatgé l'image ISO, dans le même répertoire : ``` -curl https://git.vermeulen.pro/SVPRO/svprognu/raw/branch/develop/build_svprognu | bash -s -- -d /dev/sdX +./build_svprognu -d /dev/sdX # sdX étant la cible physique de la clé ``` * Ou récupérer l'image depuis le serveur : ``` -curl https://git.vermeulen.pro/SVPRO/svprognu/raw/branch/develop/build_svprognu | bash -s -- -r -d /dev/sdX +./build_svprognu -r -d /dev/sdX # sdX étant la cible physique de la clé ``` -**La persistence sera configurée lors du 1er boot. Le démarrage peut prendre quelques minutes. +**La persistence sera configurée lors du 1er boot. Le démarrage peut prendre quelques minutes.** + +**Note :** Le mot de passe pour la session « Live User » est `svpro_gnu` ### Installation physique Depuis le menu du live, choisir "Installation Graphique ou Experts" - - ## Build iso avec live-build (experts) Cloner le dépôt puis : ``` diff --git a/auto/config b/auto/config index fc0c3e0..6e7b71a 100755 --- a/auto/config +++ b/auto/config @@ -4,9 +4,9 @@ set -e lb config noauto \ --bootloaders "syslinux,grub-efi" \ - --distribution "bullseye" \ + --distribution "bookworm" \ --architectures "amd64" \ - --archive-areas "main contrib non-free" \ + --archive-areas "main contrib non-free non-free-firmware" \ --apt-recommends "true" \ --debian-installer-gui "true" \ --debian-installer "live" \ @@ -16,8 +16,8 @@ lb config noauto \ --uefi-secure-boot "enable" \ --linux-flavours "amd64" \ --linux-packages "linux-image linux-headers" \ - --iso-volume "SVPROGNU-11" \ - --iso-application "SVPROGNU-11" \ + --iso-volume "SVPROGNU-12" \ + --iso-application "SVPROGNU-12" \ --backports "false" \ --updates "true" \ --security "true" \ diff --git a/build_svprognu b/build_svprognu index f35b5ef..2670ec1 100755 --- a/build_svprognu +++ b/build_svprognu @@ -5,7 +5,7 @@ set -e -ISO="live-svprognu-bullseye_amd64.iso" +ISO="live-svprognu-bookworm_amd64.iso" while getopts ":r d:" opt; do diff --git a/config/binary b/config/binary index e025229..e58f0dc 100644 --- a/config/binary +++ b/config/binary @@ -16,7 +16,7 @@ LB_BOOTAPPEND_LIVE="lang=fr_FR.UTF-8 locales=fr_FR.UTF-8 keyboard-layouts=fr spl LB_BOOTAPPEND_INSTALL="locales=fr_FR.UTF-8" # Set boot parameters -LB_BOOTAPPEND_LIVE_FAILSAFE="boot=live components memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=788" +LB_BOOTAPPEND_LIVE_FAILSAFE="boot=live components memtest noapic noapm nodma nomce nolapic nosmp nosplash vga=788" # Set BIOS bootloader LB_BOOTLOADER_BIOS="syslinux" @@ -24,12 +24,24 @@ LB_BOOTLOADER_BIOS="syslinux" # Set EFI bootloader LB_BOOTLOADER_EFI="grub-efi" +# Set bootloaders +LB_BOOTLOADERS="syslinux grub-efi" + # Set checksums LB_CHECKSUMS="sha256 md5" # Set compression LB_COMPRESSION="none" +# Support dm-verity on rootfs +LB_DM_VERITY="" + +# Support FEC on dm-verity rootfs +LB_DM_VERITY_FEC_ROOTS="" + +# Set sign script for roothash for dm-verity rootfs +LB_DM_VERITY_SIGN="" + # Set zsync LB_ZSYNC="true" @@ -41,7 +53,7 @@ LB_BUILD_WITH_CHROOT="true" LB_DEBIAN_INSTALLER="live" # Set debian-installer suite -LB_DEBIAN_INSTALLER_DISTRIBUTION="bullseye" +LB_DEBIAN_INSTALLER_DISTRIBUTION="bookworm" # Set debian-installer preseed filename/url LB_DEBIAN_INSTALLER_PRESEEDFILE="" @@ -59,7 +71,7 @@ LB_HDD_SIZE="auto" LB_HDD_PARTITION_START="" # Set iso author -LB_ISO_APPLICATION="SVPROGNU-11" +LB_ISO_APPLICATION="SVPROGNU-12" # Set iso preparer LB_ISO_PREPARER="live-build @LB_VERSION@; https://salsa.debian.org/live-team/live-build" @@ -68,7 +80,7 @@ LB_ISO_PREPARER="live-build @LB_VERSION@; https://salsa.debian.org/live-team/liv LB_ISO_PUBLISHER="Debian Live project; https://wiki.debian.org/DebianLive; debian-live@lists.debian.org" # Set iso volume (max 32 chars) -LB_ISO_VOLUME="SVPROGNU-11" +LB_ISO_VOLUME="SVPROGNU-12" # Set jffs2 eraseblock size LB_JFFS2_ERASEBLOCK="" @@ -80,7 +92,7 @@ LB_MEMTEST="none" LB_LOADLIN="true" # Set win32-loader -LB_WIN32_LOADER="true" +LB_WIN32_LOADER="false" # Set net tarball LB_NET_TARBALL="true" diff --git a/config/bootloaders/extlinux/splash.png b/config/bootloaders/extlinux/splash.png index 8f4fbb1..c795297 100644 Binary files a/config/bootloaders/extlinux/splash.png and b/config/bootloaders/extlinux/splash.png differ diff --git a/config/bootloaders/grub-legacy/splash.png b/config/bootloaders/grub-legacy/splash.png index 8f4fbb1..c795297 100644 Binary files a/config/bootloaders/grub-legacy/splash.png and b/config/bootloaders/grub-legacy/splash.png differ diff --git a/config/bootloaders/grub-pc/splash.png b/config/bootloaders/grub-pc/splash.png index 8f4fbb1..c795297 100644 Binary files a/config/bootloaders/grub-pc/splash.png and b/config/bootloaders/grub-pc/splash.png differ diff --git a/config/bootloaders/isolinux/splash.png b/config/bootloaders/isolinux/splash.png index 8f4fbb1..c795297 100644 Binary files a/config/bootloaders/isolinux/splash.png and b/config/bootloaders/isolinux/splash.png differ diff --git a/config/bootloaders/pxelinux/splash.png b/config/bootloaders/pxelinux/splash.png index 8f4fbb1..c795297 100644 Binary files a/config/bootloaders/pxelinux/splash.png and b/config/bootloaders/pxelinux/splash.png differ diff --git a/config/bootloaders/syslinux/splash.png b/config/bootloaders/syslinux/splash.png index 8f4fbb1..c795297 100644 Binary files a/config/bootloaders/syslinux/splash.png and b/config/bootloaders/syslinux/splash.png differ diff --git a/config/bootstrap b/config/bootstrap index 9a76243..7cd1e0f 100644 --- a/config/bootstrap +++ b/config/bootstrap @@ -4,31 +4,31 @@ LB_ARCHITECTURE="amd64" # Select distribution to use -LB_DISTRIBUTION="bullseye" +LB_DISTRIBUTION="bookworm" # Select parent distribution to use LB_PARENT_DISTRIBUTION="" # Select distribution to use in the chroot -LB_DISTRIBUTION_CHROOT="bullseye" +LB_DISTRIBUTION_CHROOT="bookworm" # Select parent distribution to use in the chroot -LB_PARENT_DISTRIBUTION_CHROOT="bullseye" +LB_PARENT_DISTRIBUTION_CHROOT="bookworm" # Select distribution to use in the final image -LB_DISTRIBUTION_BINARY="bullseye" +LB_DISTRIBUTION_BINARY="bookworm" # Select parent distribution to use in the final image -LB_PARENT_DISTRIBUTION_BINARY="bullseye" +LB_PARENT_DISTRIBUTION_BINARY="bookworm" # Select parent distribution for debian-installer to use -LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION="bullseye" +LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION="bookworm" # Select archive areas to use -LB_ARCHIVE_AREAS="main contrib non-free" +LB_ARCHIVE_AREAS="main contrib non-free non-free-firmware" # Select parent archive areas to use -LB_PARENT_ARCHIVE_AREAS="main contrib non-free" +LB_PARENT_ARCHIVE_AREAS="main contrib non-free non-free-firmware" # Set parent mirror to bootstrap from LB_PARENT_MIRROR_BOOTSTRAP="http://deb.debian.org/debian/" diff --git a/config/common b/config/common index 51320a4..8539531 100644 --- a/config/common +++ b/config/common @@ -1,15 +1,12 @@ # config/common - common options for live-build(7) # Version of live-build used to build config (config format version) -LB_CONFIGURATION_VERSION="20210407" +LB_CONFIGURATION_VERSION="20230502" # Set package manager LB_APT="apt" -# Set apt/aptitude/debootstrap ftp proxy -LB_APT_FTP_PROXY="" - -# Set apt/aptitude/debootstrap http proxy +# Set proxy for HTTP connections LB_APT_HTTP_PROXY="" # Set apt/aptitude pipeline depth diff --git a/config/hooks/live/0200-seafile.hook.chroot b/config/hooks/live/0200-seafile.hook.chroot index ba34d6d..d1c7997 100755 --- a/config/hooks/live/0200-seafile.hook.chroot +++ b/config/hooks/live/0200-seafile.hook.chroot @@ -3,7 +3,7 @@ set -e wget https://linux-clients.seafile.com/seafile.asc -O /usr/share/keyrings/seafile-keyring.asc -echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/seafile-keyring.asc] https://linux-clients.seafile.com/seafile-deb/bullseye/ stable main' > /etc/apt/sources.list.d/seafile.list +echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/seafile-keyring.asc] https://linux-clients.seafile.com/seafile-deb/bookworm/ stable main' > /etc/apt/sources.list.d/seafile.list apt update apt install -y seafile-gui diff --git a/config/hooks/live/0300-brave-browser.hook.chroot b/config/hooks/live/0300-brave-browser.hook.chroot deleted file mode 100755 index 10bd307..0000000 --- a/config/hooks/live/0300-brave-browser.hook.chroot +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -set -e - -curl -fsSLo /usr/share/keyrings/brave-browser-archive-keyring.gpg https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg -echo "deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main"|sudo tee /etc/apt/sources.list.d/brave-browser-release.list - -apt update -apt -y install brave-browser - -exit 0 diff --git a/config/hooks/live/0300-vivaldi-browser.hook.chroot b/config/hooks/live/0300-vivaldi-browser.hook.chroot new file mode 100755 index 0000000..6f438f6 --- /dev/null +++ b/config/hooks/live/0300-vivaldi-browser.hook.chroot @@ -0,0 +1,15 @@ +#!/bin/bash + +set -e + +curl -fsSL https://repo.vivaldi.com/archive/linux_signing_key.pub | gpg --dearmor | \ + sudo tee /usr/share/keyrings/vivaldi.gpg > /dev/null + +echo deb [arch=amd64 signed-by=/usr/share/keyrings/vivaldi.gpg] \ + https://repo.vivaldi.com/archive/deb/ stable main | \ + sudo tee /etc/apt/sources.list.d/vivaldi.list + +apt update +apt install vivaldi-stable + +exit 0 diff --git a/config/hooks/live/0500-xnviewmp.hook b/config/hooks/live/0500-xnviewmp.hook.chroot old mode 100644 new mode 100755 similarity index 76% rename from config/hooks/live/0500-xnviewmp.hook rename to config/hooks/live/0500-xnviewmp.hook.chroot index 04743df..08b78e3 --- a/config/hooks/live/0500-xnviewmp.hook +++ b/config/hooks/live/0500-xnviewmp.hook.chroot @@ -1,8 +1,9 @@ #!/bin/bash -set -e +#set -e wget https://download.xnview.com/XnViewMP-linux-x64.deb dpkg -i XnViewMP-linux-x64.deb +apt -fy install -exit 0 \ No newline at end of file +exit 0 diff --git a/config/hooks/live/0600-balena-etcher.hook.chroot b/config/hooks/live/0600-balena-etcher.hook.chroot new file mode 100755 index 0000000..d78cf51 --- /dev/null +++ b/config/hooks/live/0600-balena-etcher.hook.chroot @@ -0,0 +1,14 @@ +#!/bin/bash + +GIT="https://github.com/balena-io/etcher" +VERSION=$(git -c 'versionsort.suffix=-' \ + ls-remote --exit-code --refs --sort='version:refname' --tags ${GIT} '*.*.*' \ + | tail --lines=1 \ + | cut --delimiter='/' --fields=3 \ + | sed -e 's/v//g') #Get latest version number without "v" + +wget ${GIT}/releases/download/v${VERSION}/balena-etcher_${VERSION}_amd64.deb +dpkg -i balena-etcher_${VERSION}_amd64.deb +apt install -fy + +exit 0 diff --git a/config/hooks/live/0700-mattermost-desktop.hook.chroot b/config/hooks/live/0700-mattermost-desktop.hook.chroot new file mode 100755 index 0000000..d33b95f --- /dev/null +++ b/config/hooks/live/0700-mattermost-desktop.hook.chroot @@ -0,0 +1,7 @@ +#!/bin/bash + +wget https://releases.mattermost.com/desktop/5.5.1/mattermost-desktop_5.5.1-1_amd64.deb +dpkg -i mattermost-desktop_5.5.1-1_amd64.deb +apt install -fy + +exit 0 diff --git a/config/includes.chroot/etc/issue b/config/includes.chroot/etc/issue index 5b76739..dc0f502 100644 --- a/config/includes.chroot/etc/issue +++ b/config/includes.chroot/etc/issue @@ -1,9 +1,9 @@ - ______ ______ ____ ___ ____ _ _ _ _ - / ___\ \ / / _ \| _ \ / _ \ / ___| \ | | | | | - \___ \\ \ / /| |_) | |_) | | | | | | _| \| | | | | - ___) |\ V / | __/| _ <| |_| | | |_| | |\ | |_| | - |____/ \_/ |_| |_| \_\\___/___\____|_| \_|\___/ - |_____| + ______ ______ ____ ___ ____ _ _ _ _ + / ___\ \ / / _ \| _ \ / _ \ / ___| \ | | | | | + \___ \\ \ / /| |_) | |_) | | | || | _| \| | | | | + ___) |\ V / | __/| _ <| |_| || |_| | |\ | |_| | + |____/ \_/ |_| |_| \_\\___/ \____|_| \_|\____/ + \r \v \n -Bullseye ! +Bookworm ! diff --git a/config/includes.chroot/etc/motd b/config/includes.chroot/etc/motd index 0b2141f..dc0f502 100644 --- a/config/includes.chroot/etc/motd +++ b/config/includes.chroot/etc/motd @@ -1,10 +1,9 @@ - ______ ______ ____ ___ ____ _ _ _ _ - / ___\ \ / / _ \| _ \ / _ \ / ___| \ | | | | | - \___ \\ \ / /| |_) | |_) | | | | | | _| \| | | | | - ___) |\ V / | __/| _ <| |_| | | |_| | |\ | |_| | - |____/ \_/ |_| |_| \_\\___/___\____|_| \_|\___/ - |_____| - -Bullseye ! - + ______ ______ ____ ___ ____ _ _ _ _ + / ___\ \ / / _ \| _ \ / _ \ / ___| \ | | | | | + \___ \\ \ / /| |_) | |_) | | | || | _| \| | | | | + ___) |\ V / | __/| _ <| |_| || |_| | |\ | |_| | + |____/ \_/ |_| |_| \_\\___/ \____|_| \_|\____/ + +\r \v \n +Bookworm ! diff --git a/config/includes.chroot/etc/os-release b/config/includes.chroot/etc/os-release index 81b3bf4..dbecfbc 100644 --- a/config/includes.chroot/etc/os-release +++ b/config/includes.chroot/etc/os-release @@ -1,7 +1,7 @@ -PRETTY_NAME="Debian SVPROGNU Bullseye" -NAME="SVPROGNU" -ID=svprognu -VERSION="11" -VERSION_ID=11 -HOME_URL="https://www.weblib.re/dokuwiki/svprognu" -SUPPORT_URL="https://git.weblib.re/svpro/svprognu/" +PRETTY_NAME="Debian SVPROGNU Bookworm" +NAME="SVPROGNU Bookworm" +ID=svprognu_bookworm +VERSION="12" +VERSION_ID=12 +HOME_URL="https://svprognu.vermeulen.pro" +SUPPORT_URL="https://git.vermeulen.pro/SVPRO/svprognu" diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/SiteSecurityServiceState.txt b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/SiteSecurityServiceState.txt index 5b98e1f..e69de29 100644 --- a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/SiteSecurityServiceState.txt +++ b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/SiteSecurityServiceState.txt @@ -1,21 +0,0 @@ -www.google-analytics.com:HSTS 0 18443 1604407140073,1,1,2 -shavar.services.mozilla.com^firstPartyDomain=safebrowsing.86868755-6b82-4842-b301-72671a0db32e.mozilla:HSTS 0 18443 1625057113416,1,1,2 -www.https-rulesets.org:HSTS 0 18443 1656592722327,1,1,2 -raw.githubusercontent.com:HSTS 0 18443 1625056938947,1,0,2 -api.qwant.com:HSTS 0 18443 1625057117952,1,1,2 -services.addons.mozilla.org:HSTS 0 18443 1625056993200,1,0,2 -addons.mozilla.org:HPKP 0 18443 1598704876056,1,1,WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18=r/mIkG3eEpVdm+u/ko/cwxzOMo1bk4TyHIlByibiA5E= -services.addons.mozilla.org:HPKP 0 18443 1598704993203,1,1,WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18=r/mIkG3eEpVdm+u/ko/cwxzOMo1bk4TyHIlByibiA5E= -versioncheck-bg.addons.mozilla.org:HSTS 0 18443 1593521294045,1,0,2 -s2.qwant.com:HSTS 0 18443 1625056695916,1,1,2 -blocklists.settings.services.mozilla.com:HSTS 0 18443 1625057139949,1,0,2 -addons.cdn.mozilla.net:HSTS 0 18443 1625056876210,1,1,2 -versioncheck-bg.addons.mozilla.org:HPKP 0 18443 1598704994047,1,1,WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18=r/mIkG3eEpVdm+u/ko/cwxzOMo1bk4TyHIlByibiA5E= -location.services.mozilla.com:HSTS 0 18443 1625057112130,1,1,2 -aus5.mozilla.org:HSTS 0 18443 1625057032136,1,0,2 -www.google.com:HSTS 0 18443 1625063809940,1,0,2 -www.qwant.com:HSTS 0 18443 1625057143715,1,1,2 -ogs.google.com:HSTS 0 18443 1625063809050,1,0,2 -addons.mozilla.org:HSTS 0 18443 1625056876054,1,0,2 -search.services.mozilla.com:HSTS 0 18443 1625057112860,1,0,2 -firefox.settings.services.mozilla.com:HSTS 0 18443 1625056876167,1,0,2 diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/addonStartup.json.lz4 b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/addonStartup.json.lz4 index a8e7fee..7ed087e 100644 Binary files a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/addonStartup.json.lz4 and b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/addonStartup.json.lz4 differ diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/addons.json b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/addons.json index 39a728e..3db1b39 100644 --- a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/addons.json +++ b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/addons.json @@ -1 +1 @@ -{"schema":5,"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.27.10","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3579401/ublock_origin-1.27.10-an+fx.xpi?src=","homepageURL":"https://github.com/gorhill/uBlock#ublock-origin","supportURL":"https://old.reddit.com/r/uBlockOrigin/","description":"Un bloqueur de nuisances efficace, qui ménagera votre processeur et votre mémoire vive.","fullDescription":"uBlock est une extension qui bloque les publicités et les pisteurs, légère en empreinte mémoire et en utilisation du processeur et qui pourtant, est capable d'utiliser et de traiter des milliers de filtres de plus que la plupart des autres bloqueurs.\n\nConsultez cette page en Anglais pour avoir une vue d'ensemble illustrée de son efficacité : https://github.com/gorhill/uBlock/wiki/uBlock-vs.-ABP:-efficiency-compared\n\nUtilisation : Le gros bouton power dans la fenêtre pop-up permet de désactiver/activer en permanence uBlock pour le site Web en cours de consultation. Cela s'applique uniquement au site Web actuel, ce n'est pas un bouton power qui affecte entièrement le fonctionnement de l'extension.\n\n***\n\nFlexible, uBlock ne prend pas en charge que les filtres de type Adblock, elle peut également lire et créer des filtres depuis des fichiers hosts.\n\nPar défaut, ces listes de filtrage sont chargées et traitées :\n\n- EasyList (Liste anti-publicités maintenue fréquemment à jour par la communauté)\n- Peter Lowe’s Ad server list (Liste de serveurs publicitaires maintenue à jour par Peter Lowe)\n- EasyPrivacy (Liste anti-pisteurs maintenue fréquemment à jour par la communauté)\n- Malware domains (Liste de protection contre des domaines malveillants)\n\nDavantage de listes sont disponibles si vous souhaitez renforcer le blocage :\n\n- Fanboy’s Enhanced Tracking List (Liste de protection avancée contre le pistage maintenue à jour par Fanboy)\n- Dan Pollock’s hosts file (Fichier Hosts bloquant publicités, domaines malveillants et autres pisteurs, maintenue fréquemment à jour par Dan Pollock)\n- hpHosts’s Ad and tracking servers (Fichier Hosts bloquant des serveurs publicitaires et des serveurs pistant, maintenue à jour par hpHosts)\n- MVPS HOSTS (Fichier Hosts bloquant publicités, domaines malveillants et autres pisteurs, maintenue à jour par MVPS)\n- Spam404 (Liste de protection contre les spams, maintenue fréquemment à jour par la communauté)\n- Et plein d'autres\n\nBien évidemment, plus vous activez de filtres, plus l'empreinte mémoire augmentera. Pourtant, même après avoir ajouté deux listes supplémentaires crées par Fanboy et le fichier Hosts d'hpHosts, uBlock₀ utilise moins de mémoire vive que tous les autres bloqueurs de pubs populaires.\n\nVeuillez tout de même prendre en compte que le fait de choisir parmi ces listes supplémentaires peut conduire à quelques incompatibilités sur les sites Web que vous visitez, bien que ces listes soient maintenues à jour par leurs auteurs.\n\n***\n\nSans les listes prédéfinies de filtres, cette extension (comme d'autres) ne serait rien. Alors si vous tenez vraiment à contribuer d'une quelconque manière, pensez aux personnes travaillant dur pour maintenir à jour ces listes de filtres que vous utilisez, qui plus est proposées gratuitement à tout le monde.\n\n***\n\nGRATUIT.\nSource libre avec une licence publique GPLv3\nFait par des utilisateurs pour des utilisateurs.\n\nContributeurs @ Github: https://github.com/gorhill/uBlock/graphs/contributors\nContributeurs @ Crowdin: https://crowdin.net/project/ublock\n\n***\n\nIl s'agit d'une version relativement préliminaire, veuillez garder ça à l'esprit lors de votre évaluation de l'extension.\n\nConsultez ici en Anglais le Journal des changements concernant le projet :\nhttps://github.com/gorhill/uBlock/releases","weeklyDownloads":234379,"type":"extension","creator":{"name":"Raymond Hill","url":"https://addons.mozilla.org/fr/firefox/user/11423598/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/238/238546.png?modified=1590420038","width":1011,"height":758,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/238/238546.png?modified=1590420038","thumbnailWidth":640,"thumbnailHeight":480,"caption":"The popup panel: default mode"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/238/238548.png?modified=1590420038","width":1011,"height":758,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/238/238548.png?modified=1590420038","thumbnailWidth":640,"thumbnailHeight":480,"caption":"The dashboard: stock filter lists"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/238/238547.png?modified=1590420038","width":1011,"height":758,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/238/238547.png?modified=1590420038","thumbnailWidth":640,"thumbnailHeight":480,"caption":"The popup panel: default-deny mode"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/238/238549.png?modified=1590420038","width":1011,"height":758,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/238/238549.png?modified=1590420038","thumbnailWidth":640,"thumbnailHeight":480,"caption":"The dashboard: settings"},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/238/238552.png?modified=1590420044","width":970,"height":1800,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/238/238552.png?modified=1590420044","thumbnailWidth":259,"thumbnailHeight":480,"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=1590420038","width":800,"height":600,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/230/230370.png?modified=1590420038","thumbnailWidth":640,"thumbnailHeight":480,"caption":"The unified logger tells you all that uBO is seeing and doing"}],"contributionURL":"","averageRating":4.7277,"reviewCount":4141,"reviewURL":"https://addons.mozilla.org/fr/firefox/addon/ublock-origin/reviews/","updateDate":1593348318000},{"id":"https-everywhere@eff.org","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/229/229918-32.png?modified=mcrushed","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/229/229918-64.png?modified=mcrushed","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/229/229918-128.png?modified=mcrushed"},"name":"HTTPS Everywhere","version":"2020.5.20","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3574076/https_everywhere-2020.5.20-an+fx.xpi?src=","homepageURL":"https://www.eff.org/https-everywhere","supportURL":"https://www.eff.org/https-everywhere","description":"Chiffrez le Web ! L’extension Firefox HTTPS Everywhere protège vos communications en activant automatiquement le chiffrement HTTPS sur les sites le prenant en charge, même lorsque vous saisissez une URL ou cliquez sur un lien sans préfixe « https: ».","fullDescription":"Beaucoup de sites web offrent une prise en charge limitée pour le chiffrement via HTTPS, mais la rendent difficile à utiliser. Par exemple, ils peuvent utiliser une adresse par défaut non chiffrée avec HTTPS, ou proposer sur des pages chiffrées uniquement des liens qui retournent sur le site non chiffré.\n\nL’extension HTTPS Everywhere résout le problème en redirigeant toutes les requêtes de ces sites vers HTTPS.","weeklyDownloads":33016,"type":"extension","creator":{"name":"EFF Technologists","url":"https://addons.mozilla.org/fr/firefox/user/5474073/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/214/214771.png?modified=1549592598","width":1280,"height":800,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/214/214771.png?modified=1549592598","thumbnailWidth":640,"thumbnailHeight":400}],"contributionURL":"https://www.paypal.me/SupportEFF?utm_content=product-page-contribute&utm_medium=referral&utm_source=addons.mozilla.org","averageRating":4.5923,"reviewCount":525,"reviewURL":"https://addons.mozilla.org/fr/firefox/addon/https-everywhere/reviews/","updateDate":1590047319000},{"id":"qwantcomforfirefox@jetpack","icons":{"32":"https://addons.cdn.mozilla.net/user-media/addon_icons/544/544242-32.png?modified=e971ab2b","64":"https://addons.cdn.mozilla.net/user-media/addon_icons/544/544242-64.png?modified=e971ab2b","128":"https://addons.cdn.mozilla.net/user-media/addon_icons/544/544242-128.png?modified=e971ab2b"},"name":"Qwant","version":"5.0.1","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/1182732/qwant-5.0.1-fx.xpi?src=","homepageURL":"https://www.qwant.com/extension/firefox/about","supportURL":"https://help.qwant.com","description":"Qwant est le moteur de recherche européen qui ne vous piste pas. Cette extension fait de Qwant votre moteur de recherche et page d'accueil par défaut et vous permet d'activer facilement des fonctions de protection contre le pistage de Firefox.","fullDescription":"Protection contre le pistage\nCette extension fait de Qwant le moteur de recherche par défaut de Qwant. Plus aucune de vos recherches sur Internet ne filtrera: cela ne regarde que vous.\nElle active la Protection contre le Pistage de Firefox sur tout le Web, et pas seulement en mode de navigation privée. Do Not Track est aussi activé pour informer les sites Web que vous souhaitez ne pas être pisté.\n\nQwant en un bouton\nL'extension Qwant pour Firefox un bouton dans la barre d'outils qui permet d'accéder rapidement aux fonctions complémentaires de Qwant: Accès rapide aux Carnets et Favoris Qwant, activation de la Protection contre le pistage, réglages des paramètres de votre compte Qwant...\n\nLes fonctions essentielles\nEn quelques clics, gardez trace de vos contenus préférés en utilisant les Carnets Qwant. Les Favoris Qwant permettent de créer une liste pratique de raccourcis vers vos sites favoris. Ils sont aussi directement accessibles depuis le menu Marque-pages de Firefox. Enfin, vous pouvez facilement activer ou désactiver la Protection contre le pistage.","weeklyDownloads":9171,"type":"extension","creator":{"name":"Qwant","url":"https://addons.mozilla.org/fr/firefox/user/10568360/"},"developers":[],"screenshots":[{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/192/192420.png?modified=1543520519","width":700,"height":379,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/192/192420.png?modified=1543520519","thumbnailWidth":640,"thumbnailHeight":347},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/192/192421.png?modified=1543520520","width":700,"height":379,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/192/192421.png?modified=1543520520","thumbnailWidth":640,"thumbnailHeight":347},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/192/192422.png?modified=1543520521","width":700,"height":379,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/192/192422.png?modified=1543520521","thumbnailWidth":640,"thumbnailHeight":347},{"url":"https://addons.cdn.mozilla.net/user-media/previews/full/192/192423.png?modified=1543520523","width":700,"height":379,"thumbnailURL":"https://addons.cdn.mozilla.net/user-media/previews/thumbs/192/192423.png?modified=1543520523","thumbnailWidth":640,"thumbnailHeight":347}],"contributionURL":"","averageRating":4.3021,"reviewCount":178,"reviewURL":"https://addons.mozilla.org/fr/firefox/addon/qwantcom-for-firefox/reviews/","updateDate":1545039609000}],"compatOverrides":[]} \ No newline at end of file +{"schema":6,"addons":[{"id":"uBlock0@raymondhill.net","icons":{"32":"https://addons.mozilla.org/user-media/addon_icons/607/607454-32.png?modified=mcrushed","64":"https://addons.mozilla.org/user-media/addon_icons/607/607454-64.png?modified=mcrushed","128":"https://addons.mozilla.org/user-media/addon_icons/607/607454-128.png?modified=mcrushed"},"name":"uBlock Origin","version":"1.53.0","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/4188488/ublock_origin-1.53.0.xpi","homepageURL":"https://github.com/gorhill/uBlock#ublock-origin","supportURL":"https://old.reddit.com/r/uBlockOrigin/","description":"Un bloqueur de nuisances efficace, qui ménagera votre processeur et votre mémoire vive.","fullDescription":"uBlock est une extension qui bloque les publicités et les pisteurs, légère en empreinte mémoire et en utilisation du processeur et qui pourtant, est capable d'utiliser et de traiter des milliers de filtres de plus que la plupart des autres bloqueurs.\n\nConsultez cette page en Anglais pour avoir une vue d'ensemble illustrée de son efficacité : https://github.com/gorhill/uBlock/wiki/uBlock-vs.-ABP:-efficiency-compared\n\nUtilisation : Le gros bouton power dans la fenêtre pop-up permet de désactiver/activer en permanence uBlock pour le site Web en cours de consultation. Cela s'applique uniquement au site Web actuel, ce n'est pas un bouton power qui affecte entièrement le fonctionnement de l'extension.\n\n***\n\nFlexible, uBlock ne prend pas en charge que les filtres de type Adblock, elle peut également lire et créer des filtres depuis des fichiers hosts.\n\nPar défaut, ces listes de filtrage sont chargées et traitées :\n\n- EasyList (Liste anti-publicités maintenue fréquemment à jour par la communauté)\n- Peter Lowe’s Ad server list (Liste de serveurs publicitaires maintenue à jour par Peter Lowe)\n- EasyPrivacy (Liste anti-pisteurs maintenue fréquemment à jour par la communauté)\n- Malware domains (Liste de protection contre des domaines malveillants)\n\nDavantage de listes sont disponibles si vous souhaitez renforcer le blocage :\n\n- Fanboy’s Enhanced Tracking List (Liste de protection avancée contre le pistage maintenue à jour par Fanboy)\n- Dan Pollock’s hosts file (Fichier Hosts bloquant publicités, domaines malveillants et autres pisteurs, maintenue fréquemment à jour par Dan Pollock)\n- hpHosts’s Ad and tracking servers (Fichier Hosts bloquant des serveurs publicitaires et des serveurs pistant, maintenue à jour par hpHosts)\n- MVPS HOSTS (Fichier Hosts bloquant publicités, domaines malveillants et autres pisteurs, maintenue à jour par MVPS)\n- Spam404 (Liste de protection contre les spams, maintenue fréquemment à jour par la communauté)\n- Et plein d'autres\n\nBien évidemment, plus vous activez de filtres, plus l'empreinte mémoire augmentera. Pourtant, même après avoir ajouté deux listes supplémentaires crées par Fanboy et le fichier Hosts d'hpHosts, uBlock₀ utilise moins de mémoire vive que tous les autres bloqueurs de pubs populaires.\n\nVeuillez tout de même prendre en compte que le fait de choisir parmi ces listes supplémentaires peut conduire à quelques incompatibilités sur les sites Web que vous visitez, bien que ces listes soient maintenues à jour par leurs auteurs.\n\n***\n\nSans les listes prédéfinies de filtres, cette extension (comme d'autres) ne serait rien. Alors si vous tenez vraiment à contribuer d'une quelconque manière, pensez aux personnes travaillant dur pour maintenir à jour ces listes de filtres que vous utilisez, qui plus est proposées gratuitement à tout le monde.\n\n***\n\nGRATUIT.\nSource libre avec une licence publique GPLv3\nFait par des utilisateurs pour des utilisateurs.\n\nContributeurs @ Github: https://github.com/gorhill/uBlock/graphs/contributors\nContributeurs @ Crowdin: https://crowdin.net/project/ublock\n\n***\n\nIl s'agit d'une version relativement préliminaire, veuillez garder ça à l'esprit lors de votre évaluation de l'extension.\n\nConsultez ici en Anglais le Journal des changements concernant le projet :\nhttps://github.com/gorhill/uBlock/releases","weeklyDownloads":264743,"type":"extension","creator":{"name":"Raymond Hill","url":"https://addons.mozilla.org/fr/firefox/user/11423598/"},"developers":[],"screenshots":[{"url":"https://addons.mozilla.org/user-media/previews/full/238/238546.png?modified=1622132421","width":1011,"height":758,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/238/238546.jpg?modified=1622132421","thumbnailWidth":533,"thumbnailHeight":400,"caption":"The popup panel: default mode"},{"url":"https://addons.mozilla.org/user-media/previews/full/238/238548.png?modified=1622132423","width":1011,"height":758,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/238/238548.jpg?modified=1622132423","thumbnailWidth":533,"thumbnailHeight":400,"caption":"The dashboard: stock filter lists"},{"url":"https://addons.mozilla.org/user-media/previews/full/238/238547.png?modified=1622132425","width":1011,"height":758,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/238/238547.jpg?modified=1622132425","thumbnailWidth":533,"thumbnailHeight":400,"caption":"The popup panel: default-deny mode"},{"url":"https://addons.mozilla.org/user-media/previews/full/238/238549.png?modified=1622132426","width":1011,"height":758,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/238/238549.jpg?modified=1622132426","thumbnailWidth":533,"thumbnailHeight":400,"caption":"The dashboard: settings"},{"url":"https://addons.mozilla.org/user-media/previews/full/238/238552.png?modified=1622132430","width":970,"height":1800,"thumbnailURL":"https://addons.mozilla.org/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.mozilla.org/user-media/previews/full/230/230370.png?modified=1622132432","width":800,"height":600,"thumbnailURL":"https://addons.mozilla.org/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.7845,"reviewCount":4302,"reviewURL":"https://addons.mozilla.org/fr/firefox/addon/ublock-origin/reviews/","updateDate":1699501526000},{"id":"qwantcomforfirefox@jetpack","icons":{"32":"https://addons.mozilla.org/user-media/addon_icons/544/544242-32.png?modified=4ed76417","64":"https://addons.mozilla.org/user-media/addon_icons/544/544242-64.png?modified=4ed76417","128":"https://addons.mozilla.org/user-media/addon_icons/544/544242-128.png?modified=4ed76417"},"name":"Qwant VIPrivacy","version":"7.0.4.9","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3996872/qwantcom_for_firefox-7.0.4.9.xpi","homepageURL":"https://help.qwant.com/docs/search/installer-qwant-sur-mon-ordinateur/sur-firefox/","supportURL":"https://help.qwant.com","description":"Qwant VIPrivacy définit Qwant.com comme moteur de recherche par défaut, bloque les traqueurs et protège vos données personnelles.","fullDescription":"Qwant ne sait rien sur vous et ça change tout !\n\nEt si votre vie privée restait privée ? Et si vos recherches ne faisaient pas de vous une cible publicitaire ? Et si vos déplacements n’étaient pas utilisés par des tiers ? Bonne nouvelle c’est possible : il suffit de télécharger Qwant, le moteur de recherche qui ne sait rien sur vous et ça change tout ! \n\nAvec Qwant, recherchez en mode privé. \n\nBloquez les traqueurs et cookies dans votre navigateur grâce à Qwant VIPrivacy et faites vos recherches en toute confidentialité :\n\n- Zéro tracking de vos recherches\n- Zéro tracking publicitaire\n- Zéro vente de vos données personnelles\n\nNotre extension vous protège des traqueurs tout au long de votre navigation, les outils de pistage publicitaire, les balises de suivi, et autres modules d'analyse n'auront plus accès à votre profil.\n\nAvec Qwant VIPrivacy, moins de cookies et de traqueurs, fini les bandeaux intrusifs sur la plupart des sites internet que vous parcourez.\n\nOù (re)trouver Qwant ?  \n\nQui sommes-nous ? : https://about.qwant.com/\n\nMoteur de recherche Web : https://www.qwant.com/\nBlog : https://betterweb.qwant.com/  \nYoutube : https://www.youtube.com/channel/UCQX0BtYIOgkI_zHVIkuIJFw  \n\nFacebook : https://www.facebook.com/Qwantcom/  \nTwitter : https://twitter.com/Qwant_FR \nSite internet : https://about.qwant.com/fr/","weeklyDownloads":1226,"type":"extension","creator":{"name":"Qwant","url":"https://addons.mozilla.org/fr/firefox/user/10568360/"},"developers":[],"screenshots":[{"url":"https://addons.mozilla.org/user-media/previews/full/272/272820.png?modified=1662018658","width":2400,"height":1500,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/272/272820.jpg?modified=1662018658","thumbnailWidth":533,"thumbnailHeight":333},{"url":"https://addons.mozilla.org/user-media/previews/full/272/272821.png?modified=1662018657","width":2400,"height":1500,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/272/272821.jpg?modified=1662018657","thumbnailWidth":533,"thumbnailHeight":333},{"url":"https://addons.mozilla.org/user-media/previews/full/272/272822.png?modified=1662018659","width":2400,"height":1500,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/272/272822.jpg?modified=1662018659","thumbnailWidth":533,"thumbnailHeight":333},{"url":"https://addons.mozilla.org/user-media/previews/full/272/272823.png?modified=1662018657","width":2400,"height":1500,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/272/272823.jpg?modified=1662018657","thumbnailWidth":533,"thumbnailHeight":333},{"url":"https://addons.mozilla.org/user-media/previews/full/272/272824.png?modified=1662018658","width":2400,"height":1500,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/272/272824.jpg?modified=1662018658","thumbnailWidth":533,"thumbnailHeight":333}],"contributionURL":"","averageRating":4.2994,"reviewCount":220,"reviewURL":"https://addons.mozilla.org/fr/firefox/addon/qwantcom-for-firefox/reviews/","updateDate":1672408869000}]} \ No newline at end of file diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/broadcast-listeners.json b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/broadcast-listeners.json index 0de355f..fe9ae14 100644 --- a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/broadcast-listeners.json +++ b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/broadcast-listeners.json @@ -1 +1 @@ -{"version":1,"listeners":{"remote-settings/monitor_changes":{"version":"\"0\"","sourceInfo":{"moduleURI":"resource://services-settings/remote-settings.js","symbolName":"remoteSettingsBroadcastHandler"}}}} \ No newline at end of file +{"version":1,"listeners":{"remote-settings/monitor_changes":{"version":"\"1699520486171\"","sourceInfo":{"moduleURI":"resource://services-settings/remote-settings.sys.mjs","symbolName":"remoteSettingsBroadcastHandler"}}}} \ No newline at end of file diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/cert9.db b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/cert9.db index 1f27206..bd62c94 100644 Binary files a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/cert9.db and b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/cert9.db differ diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/compatibility.ini b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/compatibility.ini index 7960366..6a2ecdf 100644 --- a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/compatibility.ini +++ b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/compatibility.ini @@ -1,5 +1,5 @@ [Compatibility] -LastVersion=68.9.0_20200527211442/20200527211442 +LastVersion=115.4.0_20231016232700/20231016232700 LastOSABI=Linux_x86_64-gcc3 LastPlatformDir=/usr/lib/firefox-esr LastAppDir=/usr/lib/firefox-esr/browser diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/content-prefs.sqlite b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/content-prefs.sqlite index 497f6de..c2d12a7 100644 Binary files a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/content-prefs.sqlite and b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/content-prefs.sqlite differ diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/cookies.sqlite b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/cookies.sqlite index 4a6ceb2..e893294 100644 Binary files a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/cookies.sqlite and b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/cookies.sqlite differ diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/datareporting/session-state.json b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/datareporting/session-state.json index e69a717..2e4c88e 100644 --- a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/datareporting/session-state.json +++ b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/datareporting/session-state.json @@ -1 +1 @@ -{"sessionId":"9e3049bc-bdc1-4e3a-95cd-fb5ac413ca10","subsessionId":"5185b2e7-c9dd-4dc4-80b7-685b80942aff","profileSubsessionCounter":3,"newProfilePingSent":true} \ No newline at end of file +{"sessionId":"1c86d211-b9b1-4bb9-81ec-57919495b98c","subsessionId":"b384b822-a653-4e7c-bc5a-aa3ceb43c824","profileSubsessionCounter":8,"newProfilePingSent":true} \ No newline at end of file diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/extension-preferences.json b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/extension-preferences.json index 60da99f..cd58c65 100644 --- a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/extension-preferences.json +++ b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/extension-preferences.json @@ -1 +1 @@ -{"formautofill@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"fxmonitor@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"screenshots@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"webcompat@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"default-theme@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"google@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"bing@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"amazon@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"ddg@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"ebay@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"qwant@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"wikipedia@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"qwantcomforfirefox@jetpack":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"https-everywhere@eff.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"uBlock0@raymondhill.net":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]}} \ No newline at end of file +{"formautofill@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"fxmonitor@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"screenshots@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"webcompat@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"default-theme@mozilla.org":{"permissions":["internal:privateBrowsingAllowed","internal:svgContextPropertiesAllowed"],"origins":[]},"google@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"bing@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"amazon@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"ddg@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"ebay@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"qwant@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"wikipedia@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"qwantcomforfirefox@jetpack":{"permissions":["internal:privateBrowsingAllowed","webRequest","webRequestBlocking","webNavigation",""],"origins":["https://*.qwant.com/*",""]},"https-everywhere@eff.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"uBlock0@raymondhill.net":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"pictureinpicture@mozilla.org":{"permissions":["internal:svgContextPropertiesAllowed"],"origins":[]},"addons-search-detection@mozilla.com":{"permissions":["internal:svgContextPropertiesAllowed"],"origins":[]}} \ No newline at end of file diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/extension-settings.json b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/extension-settings.json index 230b670..251dd94 100644 --- a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/extension-settings.json +++ b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/extension-settings.json @@ -1 +1 @@ -{"version":2,"commands":{},"url_overrides":{},"prefs":{"homepage_override":{"initialValue":{"browser.startup.homepage":"about:home"},"precedenceList":[{"id":"qwantcomforfirefox@jetpack","installDate":1593527823000,"value":"https://www.qwant.com/?client=ext-firefox-hp","enabled":true}]},"websites.hyperlinkAuditingEnabled":{"initialValue":{"browser.send_pings":false},"precedenceList":[{"id":"uBlock0@raymondhill.net","installDate":1593520750000,"value":false,"enabled":true}]},"network.networkPredictionEnabled":{"initialValue":{"network.predictor.enabled":true,"network.prefetch-next":true,"network.http.speculative-parallel-limit":6,"network.dns.disablePrefetch":false},"precedenceList":[{"id":"uBlock0@raymondhill.net","installDate":1593520750000,"value":false,"enabled":true}]}},"default_search":{"defaultSearch":{"initialValue":"Google","precedenceList":[{"id":"qwantcomforfirefox@jetpack","installDate":1593527823000,"value":"Qwant","enabled":true}]}},"homepageNotification":{"qwantcomforfirefox@jetpack":{"initialValue":false,"precedenceList":[{"id":"qwantcomforfirefox@jetpack","installDate":1593527823000,"value":true,"enabled":true}]}},"tabHideNotification":{},"newTabNotification":{}} \ No newline at end of file +{"version":3,"commands":{},"url_overrides":{},"prefs":{"websites.hyperlinkAuditingEnabled":{"initialValue":{},"precedenceList":[{"id":"uBlock0@raymondhill.net","installDate":1593520750000,"value":false,"enabled":true}]},"network.networkPredictionEnabled":{"initialValue":{},"precedenceList":[{"id":"uBlock0@raymondhill.net","installDate":1593520750000,"value":false,"enabled":true}]}},"default_search":{"defaultSearch":{"initialValue":"Google","precedenceList":[{"id":"qwantcomforfirefox@jetpack","installDate":1593527823000,"value":"Qwant","enabled":true}]}},"homepageNotification":{"qwantcomforfirefox@jetpack":{"initialValue":false,"precedenceList":[{"id":"qwantcomforfirefox@jetpack","installDate":1593527823000,"value":true,"enabled":true}]}},"tabHideNotification":{},"newTabNotification":{}} \ No newline at end of file diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/extensions.json b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/extensions.json index e54e866..2d45bff 100644 --- a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/extensions.json +++ b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/extensions.json @@ -1 +1 @@ -{"schemaVersion":31,"addons":[{"id":"formautofill@mozilla.org","syncGUID":"{27a9b2cd-b8b6-49b3-823d-f5811f729e70}","version":"1.0","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,"installDate":1591132288000,"updateDate":1591132288000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox-esr/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":[],"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox-esr/browser/features/formautofill@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"fxmonitor@mozilla.org","syncGUID":"{a28f5322-ce2e-429a-b3cb-b14301c7902d}","version":"3.0","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Firefox Monitor","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"installDate":1591132288000,"updateDate":1591132288000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox-esr/browser/features/fxmonitor@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"65.0","maxVersion":null}],"targetPlatforms":[],"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox-esr/browser/features/fxmonitor@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"screenshots@mozilla.org","syncGUID":"{b5dffd86-bf84-4946-8920-a01381360347}","version":"39.0.0","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,"installDate":1591132288000,"updateDate":1591132288000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox-esr/browser/features/screenshots@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"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,"locales":["en-US"]},{"name":"Firefox Screenshots","description":"Tee veebist klippe või ekraanipilte ning salvesta need ajutiselt või püsivalt.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["et"]},{"name":"Firefox Screenshots","description":"Cokot klip jeung téwakan layar ti Raramat turta teundeun saheulaanan atawa salilana.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["su"]},{"name":"Firefox Screenshots","description":"ウェブからスクリーンショットを撮って、一時的または永久にそれを保存しましょう。","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"Firefox Screenshots","description":"Ta klipp og skjermbilder fra nettet og lagre de midlertidig eller permanent.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["nb-NO"]},{"name":"Firefox Screenshots","description":"Tire clipes e capturas de ecrã da Web e guarde-as temporariamente ou permanentemente.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["pt-PT"]},{"name":"Firefox Screenshots","description":"Cymrwch clipiau a lluniau sgrin o'r We a'u cadw dros dro neu'n barhaol.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["cy"]},{"name":"Firefox Screenshots","description":"Wzejśo klipy a fota wobrazowki z weba a składujśo je nachylu abo na pśecej.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["dsb"]},{"name":"Firefox Screenshots","description":"Glac gearrthóga agus gabhálacha scáileáin ón Ghréasán agus sábháil iad, go sealadach nó go buan.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["ga-IE"]},{"name":"Firefox Screenshots","description":"జాలం నుండి కత్తిరింపులను తెరపట్లను తీసుకొని, వాటిని తాత్కాలికంగా లేదా శాశ్వతంగా భద్రపరచకోండి.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["te"]},{"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,"locales":["ast"]},{"name":"Firefox Screenshots","description":"Effectuez des captures d’écran sur le Web et sauvegardez-les de manière temporaire ou permanente.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Firefox Screenshots","description":"Dalhin ang clip at mga screenshot mula sa Web at i-save ang mga ito pansamantala o permanente.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["tl"]},{"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,"locales":["km"]},{"name":"Firefox Screenshots","description":"Прави клипове и снимки на уебстраница и ги запазва временно или за постоянно.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"Firefox Screenshots","description":"Rekam klip dan tangkapan layar dari Web dan simpan untuk sementara atau secara permanen.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"Firefox Screenshots","description":"Hartu webetik pantaila-zatiak eta -argazkiak eta gorde aldi baterako edo behin betiko.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["eu"]},{"name":"Firefox Screenshots","description":"Pořizujte snímky webových stránek a ukládejte je dočasně nebo natrvalo.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["cs"]},{"name":"Firefox Screenshots","description":"વેબમાંથી ક્લિપ્સ અને સ્ક્રીનશૉટ્સ લો અને તેમને કામચલાઉ અથવા કાયમી રીતે સાચવો.","creator":"Mozilla","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["gu-IN"]},{"name":"Firefox Screenshots","description":"Készítsen videoklipeket és képernyőképeket a webről, és mentse őket ideiglenesen vagy véglegesen.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"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,"locales":["kn"]},{"name":"Firefox Screenshots","description":"Ke'achapa' silowachib'al chuqa' chapoj wachib'äl pan Ajk'amaya'l richin ye'ayäk.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["cak"]},{"name":"Firefox Screenshots","description":"Toma capturas de un sitio Web para guardarlas de forma temporal o permanentemente.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["es-CL"]},{"name":"Firefox Screenshots","description":"Робіть вирізки та знімки екрану в Інтернеті та зберігайте їх для подальшої роботи.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"Firefox Screenshots","description":"ویب سے کللبس یاا اسکرین شاٹیں لیں اور ان کو عارظی یا مستقل طور پر محفوظ کریں۔","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["ur"]},{"name":"Firefox Screenshots","description":"Prenu eltondaĵon aŭ faru ekrankopiojn de retpaĝoj kaj konservu ilin ĉu daŭre ĉu provizore.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["eo"]},{"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,"locales":["si"]},{"name":"Firefox Screenshots","description":"Ta klipp och skärmbilder från webben och spara dem tillfälligt eller permanent.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["sv-SE"]},{"name":"Firefox Screenshots","description":"Ta klipp og skjermbilde frå nettet og lagre dei mellombels eller permanent.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["nn-NO"]},{"name":"Firefox Screenshots","description":"خذ مقاطع و لقطات من الوب و احفظهم مؤقتًا أو دائمًا.","creator":"موزيلا ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["ar"]},{"name":"Firefox Screenshots","description":"Chụp ảnh và chụp màn hình từ Web và lưu chúng tạm thời hoặc vĩnh viễn.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["vi"]},{"name":"Firefox Screenshots","description":"Ƴettu kilip walla nattal yaynirde rewrude e geese, ndaɗndaa ɗum e mudda walla e ko duumii.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["ff"]},{"name":"Firefox Screenshots","description":"გადაუღეთ ვიდეოები და სურათები ვებგვერდებს და შეინახეთ დროებით, ან მუდმივად.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["ka"]},{"name":"Firefox Screenshots","description":"웹 페이지를 찍거나 영상으로 만들어 임시로, 혹은 영구히 보관하세요.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"Firefox Screenshots","description":"Tog cliopaichean is glacaidhean-sgrìn on lìon is sàbhail iad rè seal no gu buan.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["gd"]},{"name":"Firefox Screenshots","description":"Cattura schermate di contenuti sul Web e salvali, per un periodo di tempo limitato o in modo permanente.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"Firefox Screenshots","description":"Internetdan lavha va skrinshotlar oling hamda ularni vaqtincha yoki butunlay saqlab oling.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["uz"]},{"name":"Firefox Screenshots","description":"Tomá imágenes y capturas de la web y guardalos temporal o permanentemente.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["es-AR"]},{"name":"Firefox Screenshots","description":"Darykite iškarpas ir ekrano nuotraukos su interneto turiniu bei saugokite jas laikinai arba visąlaik.","creator":"„Mozilla“ ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["lt"]},{"name":"Firefox Screenshots","description":"Përftoni copëza dhe bëni foto në Web dhe ruajini ato përkohësisht ose përfundimisht.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["sq"]},{"name":"Firefox Screenshots","description":"Tomar clips y capturas de pantalla de la web y guardarlos temporalmente o permanentemente.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["es-MX"]},{"name":"Firefox Screenshots","description":"வலைபக்கங்களை நிரந்தரமாக (அ) தற்காலிகமாக துணுக்குகளாக (அ) திரைப்பிடிப்புகளாக சேமியுங்கள்.","creator":"மொசில்லா ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["ta"]},{"name":"Firefox Screenshots","description":"Web səhifələrin ekran görüntülərini alın, müvəqqəti və ya qalıcı saxlayın.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["az"]},{"name":"Firefox Screenshots","description":"Земете исечоци и слики од Интернет и зачувајте ги привремено или трајно.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["mk"]},{"name":"Firefox Screenshots","description":"จับภาพหน้าจอจากเว็บและบันทึกไว้ชั่วคราวหรือถาวร","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["th"]},{"name":"Firefox Screenshots","description":"Erstellen Sie Bildschirmfotos von vollständigen Webseiten oder Ausschnitten und speichern Sie diese temporär oder dauerhaft.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Firefox Screenshots","description":"Wzmiće klipy a fota wobrazowki z weba a składujće je nachwilu abo na přeco.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["hsb"]},{"name":"Firefox Screenshots","description":"वेबवरून क्लिप आणि स्क्रीनशॉट घ्या आणि त्यांना तात्पुरते किंवा कायमचे जतन करा.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["mr"]},{"name":"Firefox Screenshots","description":"ဝဘ်ထံမှ ဓါတ်ပုံများနှင့် မျက်နှာပြင်ပုံဖမ်းချက်များကို ရိုက်ယူပြီး ယာယီ သို့မဟုတ် အမြဲတမ်းသိုလှောင်ရာတွင် သိမ်းဆည်းပါ။","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["my"]},{"name":"Firefox Screenshots","description":"Fai maletgs da visur dal web ed als memorisescha temporarmain u permanentamain.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["rm"]},{"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,"locales":["gl"]},{"name":"Firefox Screenshots","description":"Feu captures de pantalla de pàgines web i deseu-les temporalment o per sempre.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"Firefox Screenshots","description":"ওয়েব থেকে ক্লিপ এবং স্ক্রিনশট নিন এবং সেগুলো সাময়িকভাবে বা স্থায়ীভাবে সংরক্ষণ করুন।","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["bn-BD"]},{"name":"Firefox Screenshots","description":"Meitsje skermôfdrukken of klips fan it web en bewarje se tydlik of permanint.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["fy-NL"]},{"name":"Firefox Screenshots","description":"Vytvorte si snímky obrazovky na webe a uložte si ich dočasne či navždy.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["sk"]},{"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,"locales":["mai"]},{"name":"Firefox Screenshots","description":"Бележите снимке екрана са веба и сачувајте их привремено или трајно.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["sr"]},{"name":"Firefox Screenshots","description":"از وب عکس بگیرید و کلیپ بسازید و به صورت موقت یا دایمی ذخیره کنید.","creator":"موزیلا ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["fa"]},{"name":"Firefox Screenshots","description":"വെബിൽ നിന്ന് ക്ലിപ്പുകളും സ്ക്രീൻഷോട്ടുകളും എടുത്ത് അവ താൽക്കാലികമായോ അല്ലെങ്കിൽ സ്ഥിരമായോ സംരക്ഷിക്കുക.","creator":"മോസില്ല ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["ml"]},{"name":"Firefox Screenshots","description":"Fanni de föto do schermo da-o Web e sarvale in mòddo tenporaneo ò cin mòddo che restan.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["lij"]},{"name":"Firefox Screenshots","description":"Ambil klip dan skrinsyot dari Web dan simpan untuk sementara waktu atau kekal.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["ms"]},{"name":"Firefox Screenshots","description":"Prende retalios video e instantaneos de schermo ab le Web e salva los temporarimente o permanentemente.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["ia"]},{"name":"Firefox Screenshots","description":"截取网页截图,可临时或永久存储。","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"Firefox Screenshots","description":"Делайте вырезки и скриншоты из Интернета и сохраняйте их временно или навсегда.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"Firefox Screenshots","description":"Tapit skeudennoù war ar Web hag enrollit anezho e-pad ur mare pe da viken.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["br"]},{"name":"Firefox Screenshots","description":"Twórz wycinki i zrzuty stron internetowych i zapisuj je tymczasowo lub trwale.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"Firefox Screenshots","description":"Ağ'dan tüyremeler ve ekran körüntilerini al ve olarnı muvaqqat yaki payidar olaraq saqla.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["crh"]},{"name":"Firefox Screenshots","description":"वेब से फ़ोटो और स्क्रीनशॉट लें और उन्हें अस्थायी या स्थायी रूप से सहेजें.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["hi-IN"]},{"name":"Firefox Screenshots","description":"ຖ່າຍຄຣິບ ແລະ ພາບຫນ້າຈໍຈາກຫນ້າເວັບ ແລ້ວບັນທຶກໄວ້ຊົ່ວຄາວ ຫລື ຖາວອນ.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["lo"]},{"name":"Firefox Screenshots","description":"Zajemajte posnetke zaslona s spleta ter jih shranite začasno ali trajno.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["sl"]},{"name":"Firefox Screenshots","description":"Snimite ili slikajte stvari s Weba te ih spremite privremeno ili trajno.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["hr"]},{"name":"Firefox Screenshots","description":"Ota leikkeitä ja kuvakaappauksia verkosta ja tallenna ne tilapäisesti tai pysyvästi.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"Firefox Screenshots","description":"Mak vidio ma ki ngolo macego cego ki cal me wang kio ki i Kakube ka igwok gi pi tutunu onyo matwal.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["ach"]},{"name":"Firefox Screenshots","description":"Интернеттен скриншоттарды түсіріп, оларды уақытша немесе тұрақты түрде сақтаңыз.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["kk"]},{"name":"Firefox Screenshots","description":"Realizează decupaje și capturi de ecran de pe web și salvează-le temporar sau permanent.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["ro"]},{"name":"Firefox Screenshots","description":"Рабіце кліпы і здымкі экрана ў Сеціве і захоўвайце іх часова або назаўжды.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["be"]},{"name":"Firefox Screenshots","description":"Snimite ili slikajte stvari s weba te ih sačuvajte privremeno ili trajno.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["bs"]},{"name":"Firefox Screenshots","description":"Enohẽ ta’anga ha japyhypy ñandutígui ha eñongatu sapy’aite térã areve.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["gn"]},{"name":"Firefox Screenshots","description":"Ṭṭef imrayen akked igdilen si Web sakin sekles-iten s wudem askudan neγ s wudem yezgan.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["kab"]},{"name":"Firefox Screenshots","description":"Take clips and screenshots from the Web and save them temporarily or permanently.","creator":"ਮੌਜ਼ੀਲਾ ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["pa-IN"]},{"name":"Firefox Screenshots","description":"Πραγματοποιήστε λήψη στιγμιοτύπων από το Διαδίκτυο και αποθηκεύστε τα προσωρινά ή μόνιμα.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"Firefox Screenshots","description":"Ստացեք հոլովակներ և էկրանի հանույթներ վեբից և պահպանեք դանք ժամանակավոր կամ մշտապես:","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["hy-AM"]},{"name":"Firefox Screenshots","description":"Tire capturas de tela da Web e guarde-as temporariamente ou permanentemente.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"Firefox Screenshots","description":"拍攝網頁的擷圖,可暫時儲存或永久儲存。","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"Firefox Screenshots","description":"יצירת צילומי מסך של דפי אינטרנט ושמירה שלהם באופן זמני או קבוע.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["he"]},{"name":"Firefox Screenshots","description":"Tag udklip og skærmbilleder fra nettet og gem dem midlertidigt eller permanent.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"Firefox Screenshots","description":"Вэбээс авсан клип болон дэлгэцийн зургийг аваад тэдгээрийг түр эсвэл бүрмөсөн хадгал.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["mn"]},{"name":"Firefox Screenshots","description":"Web sayfalarının ekran görüntülerini alın, ister geçici ister kalıcı olarak kaydedin.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"Firefox Screenshots","description":"Haz capturas y recortes de la web y guárdalos temporal o permanentemente.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["es-ES"]},{"name":"Firefox Screenshots","description":"वेबबाट फोटो र सिक्रिनसट या क्लिपहरू लिएर क्षणिक वा सदाको लागि सङ्ग्रह गर्न ।","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["ne-NP"]},{"name":"Firefox Screenshots","description":"Maak clips en schermafbeeldingen van het web en sla deze tijdelijk of permanent op.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null,"locales":["nl"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"57.0a1","maxVersion":null}],"targetPlatforms":[],"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["activeTab","downloads","tabs","storage","notifications","clipboardWrite","contextMenus"],"origins":["","https://screenshots.firefox.com/","https://screenshots.firefox.com/*"]},"icons":{"32":"icons/icon-v2.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox-esr/browser/features/screenshots@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"webcompat-reporter@mozilla.org","syncGUID":"{c66c224e-8fed-497f-a3ea-7884e4eaf2f1}","version":"1.1.0","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,"installDate":1591132288000,"updateDate":1591132288000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox-esr/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":[],"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs"],"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-esr/browser/features/webcompat-reporter@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"webcompat@mozilla.org","syncGUID":"{f520a8d9-99be-4afb-87aa-748e30300bb1}","version":"10.1.2","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"installDate":1591132288000,"updateDate":1591132288000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox-esr/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":[],"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["webRequest","webRequestBlocking"],"origins":[""]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox-esr/browser/features/webcompat@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"langpack-fr@firefox-esr.mozilla.org","syncGUID":"{5cf0e1d6-56f9-4de9-b928-f7a122e40a72}","version":"68.0buildid20200527211442","type":"locale","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Français Language Pack","description":"Language pack for Firefox for fr","creator":"mozfr.org (contributors: Vincent Béron, Théo Chevalier, Cédric Corazza, Philippe Dessante, Benoît Leseul, Marie Léger-St-Jean, Jean-Bernard Marcon, Jérôme Schell)","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"installDate":1591132288000,"updateDate":1591132288000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox-esr/browser/extensions/langpack-fr@firefox-esr.mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":true,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"68.0","maxVersion":"68.*"}],"targetPlatforms":[],"seen":true,"dependencies":[],"userPermissions":null,"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"chromeEntries":[["locale","necko","fr","chrome/fr/locale/fr/necko/"],["locale","pdf.js","fr","browser/chrome/fr/locale/pdfviewer/"],["locale","global","fr","chrome/fr/locale/fr/global/"],["locale","devtools","fr","browser/chrome/fr/locale/fr/devtools/client/"],["locale","pipnss","fr","chrome/fr/locale/fr/pipnss/"],["locale","alerts","fr","chrome/fr/locale/fr/alerts/"],["locale","devtools-startup","fr","browser/chrome/fr/locale/fr/devtools/startup/"],["locale","branding","fr","browser/chrome/fr/locale/branding/"],["locale","fxmonitor","fr","browser/features/fxmonitor@mozilla.org/fr/locale/fr/"],["locale","autoconfig","fr","chrome/fr/locale/fr/autoconfig/"],["locale","devtools-shared","fr","browser/chrome/fr/locale/fr/devtools/shared/"],["locale","global-platform","fr","chrome/fr/locale/fr/global-platform/unix/"],["locale","browser-region","fr","browser/chrome/fr/locale/browser-region/"],["locale","mozapps","fr","chrome/fr/locale/fr/mozapps/"],["locale","pluginproblem","fr","chrome/fr/locale/fr/pluginproblem/"],["locale","formautofill","fr","browser/features/formautofill@mozilla.org/fr/locale/fr/"],["locale","weave","fr","chrome/fr/locale/fr/services/"],["locale","places","fr","chrome/fr/locale/fr/places/"],["locale","passwordmgr","fr","chrome/fr/locale/fr/passwordmgr/"],["locale","report-site-issue","fr","browser/features/webcompat-reporter@mozilla.org/fr/locale/fr/"],["locale","pippki","fr","chrome/fr/locale/fr/pippki/"],["locale","browser","fr","browser/chrome/fr/locale/browser/"]],"langpackId":"langpack-fr-browser","l10nRegistrySources":{"toolkit":"","browser":"browser/"},"languages":["fr"]},"hidden":false,"installTelemetryInfo":{"source":"app-global","method":"sideload"},"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox-esr/browser/extensions/langpack-fr@firefox-esr.mozilla.org.xpi!/","location":"app-global"},{"id":"default-theme@mozilla.org","syncGUID":"{c10ad012-8f94-48c3-ab45-d8c666e870c0}","version":"1.0","type":"theme","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Default","description":"A theme with the operating system color scheme.","creator":"Mozilla","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"installDate":1593527683942,"updateDate":1591132288000,"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":[],"seen":true,"dependencies":[],"userPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://gre/modules/themes/default/","location":"app-builtin"},{"id":"firefox-compact-light@mozilla.org","syncGUID":"{add5584b-5769-420f-9cb2-373b2732f898}","version":"1.0","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,"installDate":1593527684068,"updateDate":1591132288000,"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":[],"seen":true,"dependencies":[],"userPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource:///modules/themes/light/","location":"app-builtin"},{"id":"firefox-compact-dark@mozilla.org","syncGUID":"{fe92afb4-75af-45cc-bfd7-bdbbe7678ff3}","version":"1.0","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,"installDate":1593527684074,"updateDate":1591132288000,"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":[],"seen":true,"dependencies":[],"userPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource:///modules/themes/dark/","location":"app-builtin"},{"id":"google@search.mozilla.org","syncGUID":"{6653d3c5-7d62-48e1-b24f-251849e46865}","version":"1.0","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,"installDate":1593527686629,"updateDate":1591132288000,"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":[],"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/google/","location":"app-builtin"},{"id":"bing@search.mozilla.org","syncGUID":"{1d324ddd-7467-4bbf-8527-6cf33950faa3}","version":"1.0","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Bing","description":"Bing. Search by Microsoft.","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"installDate":1593527686789,"updateDate":1591132288000,"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":[],"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/bing/","location":"app-builtin"},{"id":"amazon@search.mozilla.org","syncGUID":"{fff7dc32-80fa-4168-88d8-e7a84d37e324}","version":"1.1","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,"installDate":1593527686864,"updateDate":1591132288000,"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.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.com.mx","description":"Amazon.com.mx Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["mx"]},{"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":[],"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/amazon/","location":"app-builtin"},{"id":"ddg@search.mozilla.org","syncGUID":"{0ba11e74-9a96-4565-a55b-7ce48ddb6e08}","version":"1.0","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,"installDate":1593527686918,"updateDate":1591132288000,"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":[],"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/ddg/","location":"app-builtin"},{"id":"ebay@search.mozilla.org","syncGUID":"{8a5d0a8d-d81c-46f9-b284-afc409833500}","version":"1.0","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,"installDate":1593527686966,"updateDate":1591132288000,"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":[],"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/ebay/","location":"app-builtin"},{"id":"qwant@search.mozilla.org","syncGUID":"{42f3a180-1368-4f60-a70b-59c55152c3c3}","version":"1.0","type":"extension","loader":null,"updateURL":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Qwant","description":"Search Qwant","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"installDate":1593527687006,"updateDate":1591132288000,"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":[],"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/qwant/","location":"app-builtin"},{"id":"wikipedia@search.mozilla.org","syncGUID":"{4cb4844d-1321-4ac6-a173-f5b737216358}","version":"1.0","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,"installDate":1593527687230,"updateDate":1591132288000,"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 (ja)","description":"Wikipedia - フリー百科事典","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"Wikipedia (nl)","description":"De vrije encyclopedie","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"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":"Vikipediya (crh)","description":"Vikipediya, Azat Entsiklopediya","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["crh"]},{"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 (or)","description":"ୱିକିପିଡ଼ିଆ (ଓଡ଼ିଆ)","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["or"]},{"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":"Wikipedia (as)","description":"ৱিকিপিডিয়া, এখন মুক্ত বিশ্বকোষ","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["as"]},{"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":"വിക്കിപീഡിയ (ml)","description":"വിക്കിപീഡിയ, സ്വതന്ത്ര സര്‍വ്വവിജ്ഞാനകോശം ","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ml"]},{"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":[],"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/wikipedia/","location":"app-builtin"},{"id":"qwantcomforfirefox@jetpack","syncGUID":"{19335119-ef14-4e7c-9a7a-20db246db4cd}","version":"5.0.1","type":"extension","loader":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Qwant","description":"Qwant Extension defines qwant.com as your default homepage and search engine.","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"installDate":1593527823000,"updateDate":1593527823000,"applyBackgroundUpdates":1,"path":"/home/svpro_gnu/.mozilla/firefox/oi40lopp.default-esr/extensions/qwantcomforfirefox@jetpack.xpi","skinnable":false,"sourceURI":"https://addons.cdn.mozilla.net/user-media/addons/544242/qwant-5.0.1-fx.xpi?filehash=sha256%3A524c0ec388c761e3d1688454e386ce3b44ecebe7a8b85e2559470ec47f3ca628","releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Qwant","description":"Qwant Extension defines qwant.com as your default homepage and search engine.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Qwant","description":"L'extension Qwant définit qwant.com comme votre moteur de recherche et page d'accueil par défaut.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Qwant","description":"Qwant Extension cakton qwant.com si parazgjedhje për faqen tuaj hyrëse dhe motorin e kërkimeve.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sq"]},{"name":"Qwant","description":"Qwant Extension define qwant.com as your default homepage and search engine.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["de"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"57.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["contextMenus","storage","tabs","activeTab","privacy","webRequest","webRequestBlocking"],"origins":["https://*.qwant.com/*"]},"icons":{"16":"img/icon16.png","48":"img/icon48.png","128":"img/icon128.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"unknown","sourceURL":"https://www.qwant.com/?l=fr","method":"link"},"recommendationState":null,"rootURI":"jar:file:///home/svpro_gnu/.mozilla/firefox/oi40lopp.default-esr/extensions/qwantcomforfirefox@jetpack.xpi!/","location":"app-profile"},{"id":"https-everywhere@eff.org","syncGUID":"{2c8d4f4c-49d9-49ca-b0c7-2a1aee9a747c}","version":"2020.5.20","type":"extension","loader":null,"updateURL":null,"optionsURL":"pages/options/index.html","optionsType":5,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"installDate":1593520720000,"updateDate":1593520720000,"applyBackgroundUpdates":1,"path":"/home/svpro_gnu/.mozilla/firefox/oi40lopp.default-esr/extensions/https-everywhere@eff.org.xpi","skinnable":false,"sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3574076/https_everywhere-2020.5.20-an+fx.xpi?src=","releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["oc"]},{"name":"HTTPS Kõikjal","description":"Krüpteeri veeb! Kasuta HTTPS turvalaiendust automaatselt paljudel lehtedel.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["et"]},{"name":"HTTPS Everywhere","description":"ウェブを暗号化します!多くのウェブサイト上でHTTPSセキュリティを自動的にかけます。","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"HTTPS Everywhere","description":"Encripte a Web! Utilize automaticamente a segurança HTTPS em vários sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["pt-PT"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["te"]},{"name":"HTTPS Everywhere","description":"Amgriptiwch yr We! Defnyddiwch diogelwch HTTPS yn awtomatig ar nifer o wefanau.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["cy"]},{"name":"HTTPS Everywhere","description":"Encripta la Web! Usar seguridá HTTPS automáticamente en munchos sitios","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ast"]},{"name":"HTTPS partout","description":"Chiffrez la Toile ! Utilisez automatiquement la sécurité HTTPS avec de nombreux sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["fy"]},{"name":"HTTPS Everywhere","description":"Enkripsi web-nya! Gunakan keamanan HTTPS secara otomatis di banyak situs.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"HTTPS Навсякъде","description":"Шифрирайте мрежата! Използвайте автоматична HTTPS защита на много страници.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"HTTPS Everywhere","description":"អ៊ិនគ្រីប​តំបន់​បណ្ដាញ! ប្រើ​សុវត្ថិភាព HTTPS នៅ​លើ​បណ្ដាញ​​ជា​ច្រើន។","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["km"]},{"name":"HTTPS ਐਵਰੀਵੇਅਰ","description":"ਵੈੱਬ ਨੂੰ ਇੰਕ੍ਰਿਪਟ ਕਰੋ! ਕਈ ਸਾਈਟਾਂ ਲਈ ਆਪਣੇ ਆਪ HTTPS ਸੁਰੱਖਿਆ ਵਰਤੋ।","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["pa"]},{"name":"সর্বত্র HTTPS","description":"ওয়েব এনক্রিপ্ট! অনেক সাইটগুলিতে স্বয়ংক্রিয়ভাবে HTTPS নিরাপত্তা ব্যবহার করুন","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["bn"]},{"name":"HTTPS Everywhere","description":"Weba enkriptatu! Automatikoki erabili HTTPS segurtasuna leku askotan.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["eu"]},{"name":"HTTPS Everywhere","description":"Kryptera webben! Använd HTTPS automatiskt på många webbplatser.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"HTTPS Everywhere","description":"Šifrujte! Používejte automaticky zabezpečené HTTPS na mnoha stránkách.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["cs"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["templates"]},{"name":"HTTPS Everywhere","description":"Titkosítsa a Web-et! Automatikusan használja a HTTPS titkosítást a legtöbb oldalon.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["kn"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["or"]},{"name":"HTTPS Everywhere","description":"Krypter veven! Bruk HTTPS-tryggleik automatisk på mange sider.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["nn"]},{"name":"HTTPS Everywhere","description":"Зашифруйте мережу! Автоматично використовуйте безпеку HTTPS на багатьох сайтах.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"ہائپر ٹیکسٹ ٹرانسفر پروٹوکول سکیور ہر جگہ ","description":"ویب کو خفیہ کریں! خودبخود ہائپر ٹیکسٹ ٹرانسفر پروٹوکول سکیور سکیورٹی زیادہ سائیٹس پر استعمال کریں۔","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ur"]},{"name":"HTTPS-Ĉie","description":"Ĉifrigu la reton! Aŭtomate uzu HTTPS‐sekurecon ĉe multaj retejoj.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["eo"]},{"name":"HTTPS-allsstaðar","description":"Dulkóðaðu vefinn! Notaðu sjálfkrafa HTTPS-öryggi á mörgum vefsvæðum.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["is"]},{"name":"HTTPS Everywhere","description":"Sulitkan Sesawang! Guna HTTPS secara automatik di kebanyakan laman.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ms-MY"]},{"name":"HTTPS kila mahali","description":"Encrypt mtandao! Moja kwa moja tumia HTTPS usalama kwenye tovuti nyingi.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["sw"]},{"name":"HTTPS Everywhere","description":"شفر شبكة الإنترنت! استخدم تلقائيا تقنية HTTPS للأمان مع الكثير من المواقع.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ar"]},{"name":"HTTPS Everywhere","description":"Mã hóa Web! Tự động sử dụng bảo mật HTTPS ở nhiều trang web.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["vi"]},{"name":"HTTPS Everywhere","description":"დაშიფრეთ ინტერნეტკავშირი! გამოიყენეთ დაცული HTTPS საიტების უმეტეს ნაწილზე.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ka"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["son"]},{"name":"HTTPS Everywhere","description":"웹을 암호화 하세요! 자동으로 여러 사이트에 HTTPS 보안을 사용합니다.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["gd"]},{"name":"HTTPS Everywhere","description":"Cripta il Web! Usa HTTPS automaticamente su numerosi siti.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"HTTPS Everywhere","description":"¡Encriptar la Web! Usar seguridad HTTPS automáticamente en la mayoría de los sitios.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["es-AR"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["uz"]},{"name":"HTTPS Everywhere","description":"Šifruokite saityną! Automatiškai naudokite HTTPS saugumą daugelyje svetainių.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["lt"]},{"name":"HTTPS Everywhere","description":"Fshehtëzoni Web-in! Përdorni automatikisht siguri HTTPS në mjaft sajte.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["sq"]},{"name":"HTTPS Everywhere","description":"इन्टरनेट संचार को एनक्रिप्ट करें! सभी वेबसाइट्स पर स्वतः ही HTTPS का इस्तेमाल करें.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["hi"]},{"name":"HTTPS Everywhere","description":"Cifra la Red! Automáticamente utiliza seguridades HTTPS en multiples sitios.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["es-MX"]},{"name":"எல்லா இடங்களிலும் HTTPS","description":"வலை Encrypt! தானாகவே பல தளங்களில் HTTPS பாதுகாப்பு பயன்படுத்த.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ta"]},{"name":"HTTPS Everywhere","description":"බොහෝ වෙබ් අඩවි සඳහා HTTPS ආරක්ෂාව ස්වයංක්‍රීයව පාවිච්චි කරන්න.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["si-LK"]},{"name":"Hər yerdə HTTPS","description":"Veb-i şifrələ! Bir çox saytlarda HTTPS-i avtomatik istifadə et.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["az"]},{"name":"HTTPS Насекаде","description":"Екриптирај го Веб-от! Автоматски користи HTTPS сигурност на многу страни.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["mk"]},{"name":"HTTPS सर्वत्र","description":"वेब कूटबद्ध करा ! आपोआप अनेक साइटवर HTTPS सुरक्षा वापरा.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["mr"]},{"name":"HTTPS Everywhere","description":"เข้ารหัสลับให้กับเว็บ ใช้มาตรการความปลอดภัย HTTPS กับเว็บไซต์โดยอัตโมมัติ","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["th"]},{"name":"HTTPS Everywhere","description":"Verschlüsselt das Internet! Nutzen Sie HTTPS-Sicherheit automatisch auf vielen Webseiten.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["en-GB"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["my"]},{"name":"HTTPS Everywhere","description":"Krypter nettet! Bruk HTTPS-sikkerhet automatisk på mange nettsteder.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["nb"]},{"name":"HTTPS Everywhere","description":"Cifrar a Web! Usar automáticamente seguridade HTTPS en moitos sitios.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["gl"]},{"name":"HTTPS Everywhere","description":"Xifra la Web! Fes servir automàticament la seguretat HTTPS a molts llocs.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"HTTPS Svuda","description":"Šifriraj veb! Automatski koristi HTTPS bezbednosni protokol na velikom broju sajtova.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["sr"]},{"name":"HTTPS Everywhere","description":"Zašifrujte web! Tento doplnok automatizuje použitie HTTPS na mnohých stránkach.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["sk"]},{"name":"HTTPS Everywhere","description":"Enkripteer die Web! Gebruik HTTPS sekuriteit automaties op baie plekke.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["af"]},{"name":"HTTPS در همه جا","description":"وب را رمزگذاری کنید! از امنیت HTTPS بصورت خودکار برای بسیاری از وب‌سایت‌ها استفاده کنید.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["fa"]},{"name":"എല്ലായിടത്തും എച്ച്ടിടിപിഎസ്","description":"വെബ് രഹസ്യ കോഡുകൾ ആക്കി മാറ്റുക ! തനിയെ നിരവധി സൈറ്റുകളിൽ എഛ് ടി ടി പി എസ് സുരക്ഷിതത്വം ഉപയോഗിക്കുക ","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ml"]},{"name":"HTTPS Everywhere","description":"加密网络浏览,自动使用 HTTPS 连接访问站点,更加安全。","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"HTTPS Everywhere","description":"Зашифруйте сеть! Автоматически переключайтесь на безопасный протокол HTTPS там, где это возможно.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ia"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["br"]},{"name":"HTTPS Everywhere","description":"Zakodirajte internet! Samodejno uporabite HTTPS zaščito na mnogih spletnih straneh.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["sl"]},{"name":"HTTPS Everywhere","description":"Szyfruj sieć! Automatycznie używaj zabezpieczeń HTTPS na wielu stronach.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"HTTPS Everywhere","description":"Šifrēt tīmekli! Automātiski lietot HTTPS drošību daudzās vietnēs.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["lv"]},{"name":"HTTPS Everywhere","description":"Šifriraj web! Automatski koristi HTTPS sigurnost na mnogim stranicama.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["hr"]},{"name":"HTTPS Kaikkialla","description":"Salaa verkko automaattisesti käyttäen HTTPS-suojausta monilla sivuilla!","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ach"]},{"name":"HTTPS Everywhere","description":"Կոդավորե՛ք Վեբը։ Ավտոմատ օգտագործեք HTTPS անվտանգություն շատ կայքերի վրա։","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["hy"]},{"name":"Барлық жерде HTTPS","description":"Вебті шифрлау! Көптеген сайттарда HTTPS қауіпсіздігін автоматты түрде пайдаланыңыз.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["kk"]},{"name":"HTTPS Everywhere","description":"Versleutel het Web! Gebruik HTTPS Everywhere automatisch op vele websites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["nl-BE"]},{"name":"HTTPS Everywhere","description":"Зашыфруйце Iнтэрнэт! Аўтаматычнае выкарыстанне бяспекі HTTPS на розных сайтах","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["be"]},{"name":"HTTPS Oriunde","description":"Criptează web-ul! Folosește automat securitatea HTTPS pe multe site-uri.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ro"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["bs"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["kab"]},{"name":"HTTPS Everywhere","description":"વેબ ગોપનીય કરો! ઘણી સાઇટ પર આપમેળે HTTPS સુરક્ષાનો ઉપયોગ કરો.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["gu"]},{"name":"HTTPS Everywhere","description":"¡Cifre la Web! Utilice automáticamente la seguridad HTTPS en muchos sitios.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"HTTPS Everywhere","description":"Κρυπτογραφήστε τον Παγκόσμιο Ιστό! Χρησιμοποιήστε αυτόματα ασφάλεια HTTPS σε πολλούς δικτυακούς τόπους.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"HTTPS Everywhere","description":"Criptografar a Web! Use automaticamente a segurança HTTPS em diversos sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"HTTPS Everywhere","description":"加密整個網路!自動在網站上使用 HTTPS 安全連線。","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"HTTPS Everywhere","description":"הצפן את הרשת! השתמש באבטחת HTTPS באופן אוטומטי באתרים רבים.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["he"]},{"name":"HTTPS Everywhere","description":"Kryptér webbet! Brug HTTPS-sikkerhed automatisk på mange websteder.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"HTTPS Everywhere","description":"Web iletişiminizi şifreleyin! Birçok sitede otomatik olarak HTTPS güvenliğini kullanın.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"HTTPS Everywhere","description":"Criptigh an Gréasán! Bain úsáid as slándáil HTTPS go huathoibríoch ar go leor suíomh.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ga"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ne"]},{"name":"「https優先」","description":"將互聯網加密!自動喺網站使用https連線。","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["zh-HK"]},{"name":"HTTPS Everywhere","description":"Versleutel het web! Gebruik automatisch HTTPS-beveiliging op veel websites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["nl"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"42.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["webNavigation","webRequest","webRequestBlocking","tabs","cookies","storage"],"origins":["*://*/*","ftp://*/*"]},"icons":{"48":"images/icons/icon-active-48.png","128":"images/icons/icon-active-128.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"disco"},"recommendationState":{"validNotAfter":1747835317000,"validNotBefore":1590047317000,"states":["recommended"]},"rootURI":"jar:file:///home/svpro_gnu/.mozilla/firefox/oi40lopp.default-esr/extensions/https-everywhere@eff.org.xpi!/","location":"app-profile"},{"id":"uBlock0@raymondhill.net","syncGUID":"{081fb57f-8cbd-411d-90de-6e05db26d161}","version":"1.27.10","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,"installDate":1593520750000,"updateDate":1593520750000,"applyBackgroundUpdates":1,"path":"/home/svpro_gnu/.mozilla/firefox/oi40lopp.default-esr/extensions/uBlock0@raymondhill.net.xpi","skinnable":false,"sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3579401/ublock_origin-1.27.10-an+fx.xpi?src=search","releaseNotesURI":null,"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":"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":"高効率ブロッカーが遂に登場。CPUとメモリーの負担を抑えます。","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"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":"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":"మొత్తానికి RAM ఇంకా CPU పై తేలికయిన, ఒక సమర్థవంతమైన నిరోధిని.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["te"]},{"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":"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":"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":"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":"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":["kn"]},{"name":"uBlock Origin","description":"Ефективний блокувальник реклами таки з’явився. Не навантажує процесор та пам'ять.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"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":"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":"وأخيراً, مانع اعلانات كفوء. خفيف على المعالج و الذاكرة.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ar"]},{"name":"uBlock Origin","description":"როგორც იქნა, მძლავრი და შედეგიანი რეკლამების შემზღუდავი. ზოგავს CPU-ს და მეხსიერებას.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ka"]},{"name":"uBlock Origin","description":"이 부가 기능은 효율적인 차단기입니다. CPU와 메모리에 주는 부담이 적습니다.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"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":"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":"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":"आख़िरकार, क्रोमियम-बेस्ड ब्राउज़रों के लिए एक कुशल अवरोधक। 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":"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":"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":"Ó 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":"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":"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":["sr"]},{"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":["fa"]},{"name":"uBlock Origin","description":"അവസാനം, ഒരു കാര്യക്ഷമമായ ബ്ലോക്കര്‍. ലഘുവായ CPU, memory ഉപയോഗം.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ml"]},{"name":"uBlock Origin","description":"一款高效的网络请求过滤工具,占用极低的内存和 CPU。","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"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":"Наконец-то, быстрый и эффективный блокировщик для браузеров.","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":"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":"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":"Finally, an efficient blocker. Easy on CPU and memory.","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":"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":"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":"Finally, an efficient blocker. Easy on CPU and memory.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["kk"]},{"name":"uBlock Origin","description":"Επιτέλους, ένας αποτελεσματικός blocker. Ελαφρύς για τον επεξεργαστή και τη μνήμη.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["el"]},{"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":"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":"一個高效率的網路資源過濾器,使用不多的 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":["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":"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":"Eindelijk, een efficiënte adblocker. Gebruikt weinig processorkracht en geheugen.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["nl"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"55.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["dns","menus","privacy","storage","tabs","unlimitedStorage","webNavigation","webRequest","webRequestBlocking"],"origins":["","http://*/*","https://*/*","file://*/*"]},"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":null,"hidden":false,"installTelemetryInfo":{"source":"amo","sourceURL":"https://addons.mozilla.org/fr/firefox/search/?q=ublock&platform=Linux&appver=68.9.0","method":"amWebAPI"},"recommendationState":{"validNotAfter":1748427778000,"validNotBefore":1590639778000,"states":["recommended"]},"rootURI":"jar:file:///home/svpro_gnu/.mozilla/firefox/oi40lopp.default-esr/extensions/uBlock0@raymondhill.net.xpi!/","location":"app-profile"}]} \ No newline at end of file +{"schemaVersion":35,"addons":[{"id":"https-everywhere@eff.org","syncGUID":"{2c8d4f4c-49d9-49ca-b0c7-2a1aee9a747c}","version":"2020.5.20","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":"pages/options/index.html","optionsType":5,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1593520720000,"updateDate":1699530759946,"applyBackgroundUpdates":1,"path":"/home/svpro_gnu/.mozilla/firefox/oi40lopp.default-esr/extensions/https-everywhere@eff.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"HTTPS Everywhere","description":"ウェブを暗号化します!多くのウェブサイト上でHTTPSセキュリティを自動的にかけます。","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"HTTPS Kõikjal","description":"Krüpteeri veeb! Kasuta HTTPS turvalaiendust automaatselt paljudel lehtedel.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["et"]},{"name":"HTTPS Everywhere","description":"Amgriptiwch yr We! Defnyddiwch diogelwch HTTPS yn awtomatig ar nifer o wefanau.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["cy"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["oc"]},{"name":"HTTPS Everywhere","description":"Encripte a Web! Utilize automaticamente a segurança HTTPS em vários sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["pt-PT"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["te"]},{"name":"HTTPS Everywhere","description":"Encripta la Web! Usar seguridá HTTPS automáticamente en munchos sitios","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ast"]},{"name":"HTTPS partout","description":"Chiffrez la Toile ! Utilisez automatiquement la sécurité HTTPS avec de nombreux sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["fy"]},{"name":"HTTPS Everywhere","description":"អ៊ិនគ្រីប​តំបន់​បណ្ដាញ! ប្រើ​សុវត្ថិភាព HTTPS នៅ​លើ​បណ្ដាញ​​ជា​ច្រើន។","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["km"]},{"name":"HTTPS Everywhere","description":"Enkripsi web-nya! Gunakan keamanan HTTPS secara otomatis di banyak situs.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"HTTPS Навсякъде","description":"Шифрирайте мрежата! Използвайте автоматична HTTPS защита на много страници.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"HTTPS ਐਵਰੀਵੇਅਰ","description":"ਵੈੱਬ ਨੂੰ ਇੰਕ੍ਰਿਪਟ ਕਰੋ! ਕਈ ਸਾਈਟਾਂ ਲਈ ਆਪਣੇ ਆਪ HTTPS ਸੁਰੱਖਿਆ ਵਰਤੋ।","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["pa"]},{"name":"সর্বত্র HTTPS","description":"ওয়েব এনক্রিপ্ট! অনেক সাইটগুলিতে স্বয়ংক্রিয়ভাবে HTTPS নিরাপত্তা ব্যবহার করুন","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["bn"]},{"name":"HTTPS Everywhere","description":"Weba enkriptatu! Automatikoki erabili HTTPS segurtasuna leku askotan.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["eu"]},{"name":"HTTPS Everywhere","description":"Kryptera webben! Använd HTTPS automatiskt på många webbplatser.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["templates"]},{"name":"HTTPS Everywhere","description":"Titkosítsa a Web-et! Automatikusan használja a HTTPS titkosítást a legtöbb oldalon.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"HTTPS Everywhere","description":"Šifrujte! Používejte automaticky zabezpečené HTTPS na mnoha stránkách.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["cs"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["or"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["kn"]},{"name":"HTTPS-allsstaðar","description":"Dulkóðaðu vefinn! Notaðu sjálfkrafa HTTPS-öryggi á mörgum vefsvæðum.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["is"]},{"name":"HTTPS Everywhere","description":"Krypter veven! Bruk HTTPS-tryggleik automatisk på mange sider.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["nn"]},{"name":"HTTPS Everywhere","description":"Sulitkan Sesawang! Guna HTTPS secara automatik di kebanyakan laman.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ms-MY"]},{"name":"HTTPS Everywhere","description":"Зашифруйте мережу! Автоматично використовуйте безпеку HTTPS на багатьох сайтах.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"ہائپر ٹیکسٹ ٹرانسفر پروٹوکول سکیور ہر جگہ ","description":"ویب کو خفیہ کریں! خودبخود ہائپر ٹیکسٹ ٹرانسفر پروٹوکول سکیور سکیورٹی زیادہ سائیٹس پر استعمال کریں۔","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ur"]},{"name":"HTTPS-Ĉie","description":"Ĉifrigu la reton! Aŭtomate uzu HTTPS‐sekurecon ĉe multaj retejoj.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["eo"]},{"name":"HTTPS kila mahali","description":"Encrypt mtandao! Moja kwa moja tumia HTTPS usalama kwenye tovuti nyingi.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["sw"]},{"name":"HTTPS Everywhere","description":"شفر شبكة الإنترنت! استخدم تلقائيا تقنية HTTPS للأمان مع الكثير من المواقع.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ar"]},{"name":"HTTPS Everywhere","description":"Mã hóa Web! Tự động sử dụng bảo mật HTTPS ở nhiều trang web.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["vi"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["son"]},{"name":"HTTPS Everywhere","description":"დაშიფრეთ ინტერნეტკავშირი! გამოიყენეთ დაცული HTTPS საიტების უმეტეს ნაწილზე.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ka"]},{"name":"HTTPS Everywhere","description":"웹을 암호화 하세요! 자동으로 여러 사이트에 HTTPS 보안을 사용합니다.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["gd"]},{"name":"HTTPS Everywhere","description":"Cripta il Web! Usa HTTPS automaticamente su numerosi siti.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"HTTPS Everywhere","description":"¡Encriptar la Web! Usar seguridad HTTPS automáticamente en la mayoría de los sitios.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["es-AR"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["uz"]},{"name":"HTTPS Everywhere","description":"Šifruokite saityną! Automatiškai naudokite HTTPS saugumą daugelyje svetainių.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["lt"]},{"name":"HTTPS Everywhere","description":"Fshehtëzoni Web-in! Përdorni automatikisht siguri HTTPS në mjaft sajte.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["sq"]},{"name":"HTTPS Everywhere","description":"इन्टरनेट संचार को एनक्रिप्ट करें! सभी वेबसाइट्स पर स्वतः ही HTTPS का इस्तेमाल करें.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["hi"]},{"name":"HTTPS Everywhere","description":"Cifra la Red! Automáticamente utiliza seguridades HTTPS en multiples sitios.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["es-MX"]},{"name":"எல்லா இடங்களிலும் HTTPS","description":"வலை Encrypt! தானாகவே பல தளங்களில் HTTPS பாதுகாப்பு பயன்படுத்த.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ta"]},{"name":"HTTPS Everywhere","description":"බොහෝ වෙබ් අඩවි සඳහා HTTPS ආරක්ෂාව ස්වයංක්‍රීයව පාවිච්චි කරන්න.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["si-LK"]},{"name":"Hər yerdə HTTPS","description":"Veb-i şifrələ! Bir çox saytlarda HTTPS-i avtomatik istifadə et.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["az"]},{"name":"HTTPS Насекаде","description":"Екриптирај го Веб-от! Автоматски користи HTTPS сигурност на многу страни.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["mk"]},{"name":"HTTPS Everywhere","description":"Verschlüsselt das Internet! Nutzen Sie HTTPS-Sicherheit automatisch auf vielen Webseiten.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"HTTPS Everywhere","description":"เข้ารหัสลับให้กับเว็บ ใช้มาตรการความปลอดภัย HTTPS กับเว็บไซต์โดยอัตโมมัติ","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["th"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["en-GB"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["my"]},{"name":"HTTPS Everywhere","description":"Krypter nettet! Bruk HTTPS-sikkerhet automatisk på mange nettsteder.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["nb"]},{"name":"HTTPS सर्वत्र","description":"वेब कूटबद्ध करा ! आपोआप अनेक साइटवर HTTPS सुरक्षा वापरा.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["mr"]},{"name":"HTTPS Everywhere","description":"Cifrar a Web! Usar automáticamente seguridade HTTPS en moitos sitios.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["gl"]},{"name":"HTTPS Everywhere","description":"Xifra la Web! Fes servir automàticament la seguretat HTTPS a molts llocs.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"HTTPS Everywhere","description":"Zašifrujte web! Tento doplnok automatizuje použitie HTTPS na mnohých stránkach.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["sk"]},{"name":"HTTPS Svuda","description":"Šifriraj veb! Automatski koristi HTTPS bezbednosni protokol na velikom broju sajtova.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["sr"]},{"name":"HTTPS Everywhere","description":"Enkripteer die Web! Gebruik HTTPS sekuriteit automaties op baie plekke.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["af"]},{"name":"HTTPS در همه جا","description":"وب را رمزگذاری کنید! از امنیت HTTPS بصورت خودکار برای بسیاری از وب‌سایت‌ها استفاده کنید.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["fa"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ia"]},{"name":"എല്ലായിടത്തും എച്ച്ടിടിപിഎസ്","description":"വെബ് രഹസ്യ കോഡുകൾ ആക്കി മാറ്റുക ! തനിയെ നിരവധി സൈറ്റുകളിൽ എഛ് ടി ടി പി എസ് സുരക്ഷിതത്വം ഉപയോഗിക്കുക ","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ml"]},{"name":"HTTPS Everywhere","description":"加密网络浏览,自动使用 HTTPS 连接访问站点,更加安全。","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["br"]},{"name":"HTTPS Everywhere","description":"Зашифруйте сеть! Автоматически переключайтесь на безопасный протокол HTTPS там, где это возможно.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"HTTPS Everywhere","description":"Szyfruj sieć! Automatycznie używaj zabezpieczeń HTTPS na wielu stronach.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"HTTPS Everywhere","description":"Zakodirajte internet! Samodejno uporabite HTTPS zaščito na mnogih spletnih straneh.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["sl"]},{"name":"HTTPS Everywhere","description":"Šifrēt tīmekli! Automātiski lietot HTTPS drošību daudzās vietnēs.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["lv"]},{"name":"HTTPS Everywhere","description":"Šifriraj web! Automatski koristi HTTPS sigurnost na mnogim stranicama.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["hr"]},{"name":"HTTPS Kaikkialla","description":"Salaa verkko automaattisesti käyttäen HTTPS-suojausta monilla sivuilla!","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ach"]},{"name":"HTTPS Everywhere","description":"Կոդավորե՛ք Վեբը։ Ավտոմատ օգտագործեք HTTPS անվտանգություն շատ կայքերի վրա։","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["hy"]},{"name":"HTTPS Everywhere","description":"Зашыфруйце Iнтэрнэт! Аўтаматычнае выкарыстанне бяспекі HTTPS на розных сайтах","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["be"]},{"name":"HTTPS Everywhere","description":"Versleutel het Web! Gebruik HTTPS Everywhere automatisch op vele websites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["nl-BE"]},{"name":"Барлық жерде HTTPS","description":"Вебті шифрлау! Көптеген сайттарда HTTPS қауіпсіздігін автоматты түрде пайдаланыңыз.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["kk"]},{"name":"HTTPS Oriunde","description":"Criptează web-ul! Folosește automat securitatea HTTPS pe multe site-uri.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ro"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["bs"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["kab"]},{"name":"HTTPS Everywhere","description":"વેબ ગોપનીય કરો! ઘણી સાઇટ પર આપમેળે HTTPS સુરક્ષાનો ઉપયોગ કરો.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["gu"]},{"name":"HTTPS Everywhere","description":"¡Cifre la Web! Utilice automáticamente la seguridad HTTPS en muchos sitios.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"HTTPS Everywhere","description":"Criptografar a Web! Use automaticamente a segurança HTTPS em diversos sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"HTTPS Everywhere","description":"加密整個網路!自動在網站上使用 HTTPS 安全連線。","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"HTTPS Everywhere","description":"Κρυπτογραφήστε τον Παγκόσμιο Ιστό! Χρησιμοποιήστε αυτόματα ασφάλεια HTTPS σε πολλούς δικτυακούς τόπους.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"HTTPS Everywhere","description":"הצפן את הרשת! השתמש באבטחת HTTPS באופן אוטומטי באתרים רבים.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["he"]},{"name":"HTTPS Everywhere","description":"Kryptér webbet! Brug HTTPS-sikkerhed automatisk på mange websteder.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"HTTPS Everywhere","description":"Web iletişiminizi şifreleyin! Birçok sitede otomatik olarak HTTPS güvenliğini kullanın.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"HTTPS Everywhere","description":"Criptigh an Gréasán! Bain úsáid as slándáil HTTPS go huathoibríoch ar go leor suíomh.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ga"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ne"]},{"name":"「https優先」","description":"將互聯網加密!自動喺網站使用https連線。","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["zh-HK"]},{"name":"HTTPS Everywhere","description":"Versleutel het web! Gebruik automatisch HTTPS-beveiliging op veel websites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["nl"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedState":2,"signedDate":1590047318000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["webNavigation","webRequest","webRequestBlocking","tabs","cookies","storage"],"origins":["*://*/*","ftp://*/*"]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"48":"images/icons/icon-active-48.png","128":"images/icons/icon-active-128.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{"webRequest":{"onBeforeRequest":[[{"incognito":null,"tabId":null,"types":null,"urls":["*://*/*","ftp://*/*"],"windowId":null},["blocking"]]],"onBeforeRedirect":[[{"incognito":null,"tabId":null,"types":null,"urls":["https://*/*"],"windowId":null},null]],"onCompleted":[[{"incognito":null,"tabId":null,"types":null,"urls":["*://*/*"],"windowId":null},null]],"onErrorOccurred":[[{"incognito":null,"tabId":null,"types":null,"urls":["*://*/*"],"windowId":null}]],"onHeadersReceived":[[{"incognito":null,"tabId":null,"types":null,"urls":["https://*/*"],"windowId":null},["blocking","responseHeaders"]]]}}},"hidden":false,"installTelemetryInfo":{"source":"disco"},"recommendationState":{"validNotAfter":1747835317000,"validNotBefore":1590047317000,"states":["recommended"]},"rootURI":"jar:file:///home/svpro_gnu/.mozilla/firefox/oi40lopp.default-esr/extensions/https-everywhere@eff.org.xpi!/","location":"app-profile"},{"id":"formautofill@mozilla.org","syncGUID":"{27a9b2cd-b8b6-49b3-823d-f5811f729e70}","version":"1.0.1","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"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":1591132288000,"updateDate":1698182488000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox-esr/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":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox-esr/browser/features/formautofill@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"screenshots@mozilla.org","syncGUID":"{b5dffd86-bf84-4946-8920-a01381360347}","version":"39.0.1","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"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":1591132288000,"updateDate":1698182488000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox-esr/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","mozillaAddons","telemetry"],"origins":["","https://screenshots.firefox.com/","resource://pdf.js/","about:reader*","https://screenshots.firefox.com/*"]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{"runtime":{"onMessage":[[]]}}},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox-esr/browser/features/screenshots@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"webcompat-reporter@mozilla.org","syncGUID":"{c66c224e-8fed-497f-a3ea-7884e4eaf2f1}","version":"1.5.1","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"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":1591132288000,"updateDate":1698182488000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox-esr/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-esr/browser/features/webcompat-reporter@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"webcompat@mozilla.org","syncGUID":"{f520a8d9-99be-4afb-87aa-748e30300bb1}","version":"115.1.0","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"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":1591132288000,"updateDate":1698182488000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox-esr/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":"102.0","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["mozillaAddons","tabs","webNavigation","webRequest","webRequestBlocking"],"origins":[""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{"webRequest":{"onBeforeSendHeaders":[[{"incognito":null,"tabId":null,"types":["sub_frame"],"urls":["*://trends.google.com/trends/embed*"],"windowId":null},["blocking","requestHeaders"]]],"onHeadersReceived":[[{"incognito":null,"tabId":null,"types":["sub_frame"],"urls":["*://trends.google.com/trends/embed*"],"windowId":null},["blocking","responseHeaders"]]],"onBeforeRequest":[[{"incognito":null,"tabId":null,"types":["main_frame"],"urls":["*://login.microsoftonline.com/*","*://login.microsoftonline.us/*"],"windowId":null},["blocking"]],[{"incognito":null,"tabId":null,"types":["image"],"urls":["https://smartblock.firefox.etp/facebook.svg","https://smartblock.firefox.etp/play.svg"],"windowId":null},["blocking"]],[{"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","*://s7.addthis.com/icons/official-addthis-angularjs/current/dist/official-addthis-angularjs.min.js*","*://track.adform.net/serving/scripts/trackpoint/","*://track.adform.net/serving/scripts/trackpoint/async/","*://*.adnxs.com/*/ast.js*","*://*.adnxs.com/*/pb.js*","*://*.adnxs.com/*/prebid*","*://www.everestjs.net/static/st.v3.js*","*://static.adsafeprotected.com/vans-adapter-google-ima.js","*://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js","*://cdn.branch.io/branch-latest.min.js*","*://pub.doubleverify.com/signals/pub.js*","*://c.amazon-adsystem.com/aax2/apstag.js","*://auth.9c9media.ca/auth/main.js","*://static.chartbeat.com/js/chartbeat.js","*://static.chartbeat.com/js/chartbeat_video.js","*://static.criteo.net/js/ld/publishertag.js","*://*.imgur.com/js/vendor.*.bundle.js","*://*.imgur.io/js/vendor.*.bundle.js","*://www.rva311.com/static/js/main.*.chunk.js","*://web-assets.toggl.com/app/assets/scripts/*.js","*://libs.coremetrics.com/eluminate.js","*://connect.facebook.net/*/sdk.js*","*://connect.facebook.net/*/all.js*","*://secure.cdn.fastclick.net/js/cnvr-launcher/*/launcher-stub.min.js*","*://www.google-analytics.com/analytics.js*","*://www.google-analytics.com/gtm/js*","*://www.googletagmanager.com/gtm.js*","*://www.google-analytics.com/plugins/ua/ec.js","*://ssl.google-analytics.com/ga.js","*://s0.2mdn.net/instream/html5/ima3.js","*://imasdk.googleapis.com/js/sdkloader/ima3.js","*://www.googleadservices.com/pagead/conversion_async.js","*://www.googletagservices.com/tag/js/gpt.js*","*://pagead2.googlesyndication.com/tag/js/gpt.js*","*://pagead2.googlesyndication.com/gpt/pubads_impl_*.js*","*://securepubads.g.doubleclick.net/tag/js/gpt.js*","*://securepubads.g.doubleclick.net/gpt/pubads_impl_*.js*","*://script.ioam.de/iam.js","*://cdn.adsafeprotected.com/iasPET.1.js","*://static.adsafeprotected.com/iasPET.1.js","*://adservex.media.net/videoAds.js*","*://*.moatads.com/*/moatad.js*","*://*.moatads.com/*/moatapi.js*","*://*.moatads.com/*/moatheader.js*","*://*.moatads.com/*/yi.js*","*://*.imrworldwide.com/v60.js","*://cdn.optimizely.com/js/*.js","*://cdn.optimizely.com/public/*.js","*://id.rambler.ru/rambler-id-helper/auth_events.js","*://media.richrelevance.com/rrserver/js/1.2/p13n.js","*://www.gstatic.com/firebasejs/*/firebase-messaging.js*","*://*.vidible.tv/*/vidible-min.js*","*://vdb-cdn-files.s3.amazonaws.com/*/vidible-min.js*","*://js.maxmind.com/js/apis/geoip2/*/geoip2.js","*://s.webtrends.com/js/advancedLinkTracking.js","*://s.webtrends.com/js/webtrends.js","*://s.webtrends.com/js/webtrends.min.js"],"windowId":null},["blocking"]],[{"incognito":null,"tabId":null,"types":["image"],"urls":["*://track.adform.net/Serving/TrackPoint/*","*://pixel.advertising.com/firefox-etp","*://*.advertising.com/*.js*","*://*.advertising.com/*","*://securepubads.g.doubleclick.net/gampad/*ad-blk*","*://pubads.g.doubleclick.net/gampad/*ad-blk*","*://securepubads.g.doubleclick.net/gampad/*xml_vmap1*","*://pubads.g.doubleclick.net/gampad/*xml_vmap1*","*://vast.adsafeprotected.com/vast*","*://securepubads.g.doubleclick.net/gampad/*xml_vmap2*","*://pubads.g.doubleclick.net/gampad/*xml_vmap2*","*://securepubads.g.doubleclick.net/gampad/*ad*","*://pubads.g.doubleclick.net/gampad/*ad*","*://www.facebook.com/platform/impression.php*","https://ads.stickyadstv.com/firefox-etp","*://ads.stickyadstv.com/auto-user-sync*","*://ads.stickyadstv.com/user-matching*","https://static.adsafeprotected.com/firefox-etp-pixel","*://*.adsafeprotected.com/*.gif*","*://*.adsafeprotected.com/*.png*","*://*.adsafeprotected.com/*.js*","*://*.adsafeprotected.com/*/adj*","*://*.adsafeprotected.com/*/imp/*","*://*.adsafeprotected.com/*/Serving/*","*://*.adsafeprotected.com/*/unit/*","*://*.adsafeprotected.com/jload","*://*.adsafeprotected.com/jload?*","*://*.adsafeprotected.com/jsvid","*://*.adsafeprotected.com/jsvid?*","*://*.adsafeprotected.com/mon*","*://*.adsafeprotected.com/tpl","*://*.adsafeprotected.com/tpl?*","*://*.adsafeprotected.com/services/pub*","*://*.adsafeprotected.com/*"],"windowId":null},["blocking"]],[{"incognito":null,"tabId":null,"types":["imageset"],"urls":["*://track.adform.net/Serving/TrackPoint/*","*://pixel.advertising.com/firefox-etp","*://*.advertising.com/*.js*","*://*.advertising.com/*","*://securepubads.g.doubleclick.net/gampad/*ad-blk*","*://pubads.g.doubleclick.net/gampad/*ad-blk*","*://securepubads.g.doubleclick.net/gampad/*xml_vmap1*","*://pubads.g.doubleclick.net/gampad/*xml_vmap1*","*://vast.adsafeprotected.com/vast*","*://securepubads.g.doubleclick.net/gampad/*xml_vmap2*","*://pubads.g.doubleclick.net/gampad/*xml_vmap2*","*://securepubads.g.doubleclick.net/gampad/*ad*","*://pubads.g.doubleclick.net/gampad/*ad*","*://www.facebook.com/platform/impression.php*","https://ads.stickyadstv.com/firefox-etp","*://ads.stickyadstv.com/auto-user-sync*","*://ads.stickyadstv.com/user-matching*","https://static.adsafeprotected.com/firefox-etp-pixel","*://*.adsafeprotected.com/*.gif*","*://*.adsafeprotected.com/*.png*","*://*.adsafeprotected.com/*.js*","*://*.adsafeprotected.com/*/adj*","*://*.adsafeprotected.com/*/imp/*","*://*.adsafeprotected.com/*/Serving/*","*://*.adsafeprotected.com/*/unit/*","*://*.adsafeprotected.com/jload","*://*.adsafeprotected.com/jload?*","*://*.adsafeprotected.com/jsvid","*://*.adsafeprotected.com/jsvid?*","*://*.adsafeprotected.com/mon*","*://*.adsafeprotected.com/tpl","*://*.adsafeprotected.com/tpl?*","*://*.adsafeprotected.com/services/pub*","*://*.adsafeprotected.com/*"],"windowId":null},["blocking"]],[{"incognito":null,"tabId":null,"types":["xmlhttprequest"],"urls":["*://track.adform.net/Serving/TrackPoint/*","*://pagead2.googlesyndication.com/pagead/*.js*fcd=true","*://pagead2.googlesyndication.com/pagead/js/*.js*fcd=true","*://pixel.advertising.com/firefox-etp","*://cdn.cmp.advertising.com/firefox-etp","*://*.advertising.com/*.js*","*://*.advertising.com/*","*://securepubads.g.doubleclick.net/gampad/*ad-blk*","*://pubads.g.doubleclick.net/gampad/*ad-blk*","*://securepubads.g.doubleclick.net/gampad/*xml_vmap1*","*://pubads.g.doubleclick.net/gampad/*xml_vmap1*","*://vast.adsafeprotected.com/vast*","*://securepubads.g.doubleclick.net/gampad/*xml_vmap2*","*://pubads.g.doubleclick.net/gampad/*xml_vmap2*","*://securepubads.g.doubleclick.net/gampad/*ad*","*://pubads.g.doubleclick.net/gampad/*ad*","*://www.facebook.com/platform/impression.php*","https://ads.stickyadstv.com/firefox-etp","*://ads.stickyadstv.com/auto-user-sync*","*://ads.stickyadstv.com/user-matching*","https://static.adsafeprotected.com/firefox-etp-pixel","https://static.adsafeprotected.com/firefox-etp-js","*://*.adsafeprotected.com/*.gif*","*://*.adsafeprotected.com/*.png*","*://*.adsafeprotected.com/*.js*","*://*.adsafeprotected.com/*/adj*","*://*.adsafeprotected.com/*/imp/*","*://*.adsafeprotected.com/*/Serving/*","*://*.adsafeprotected.com/*/unit/*","*://*.adsafeprotected.com/jload","*://*.adsafeprotected.com/jload?*","*://*.adsafeprotected.com/jsvid","*://*.adsafeprotected.com/jsvid?*","*://*.adsafeprotected.com/mon*","*://*.adsafeprotected.com/tpl","*://*.adsafeprotected.com/tpl?*","*://*.adsafeprotected.com/services/pub*","*://*.adsafeprotected.com/*"],"windowId":null},["blocking"]],[{"incognito":null,"tabId":null,"types":["sub_frame"],"urls":["*://tpc.googlesyndication.com/safeframe/*/html/container.html","*://*.safeframe.googlesyndication.com/safeframe/*/html/container.html"],"windowId":null},["blocking"]]]}}},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox-esr/browser/features/webcompat@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"pictureinpicture@mozilla.org","syncGUID":"{a1eec026-f1df-4278-b748-70fbea2f92fd}","version":"1.0.0","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"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":1698182488000,"updateDate":1698182488000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox-esr/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-esr/browser/features/pictureinpicture@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"google@search.mozilla.org","syncGUID":"{6653d3c5-7d62-48e1-b24f-251849e46865}","version":"1.4","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"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":1593527686629,"updateDate":1591132288000,"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":["region-ru"]},{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["region-by"]},{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["region-tr"]},{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["region-kz"]}],"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":"bing@search.mozilla.org","syncGUID":"{1d324ddd-7467-4bbf-8527-6cf33950faa3}","version":"1.5","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"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":1593527686789,"updateDate":1591132288000,"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":"amazon@search.mozilla.org","syncGUID":"{fff7dc32-80fa-4168-88d8-e7a84d37e324}","version":"1.12","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"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":1593527686864,"updateDate":1591132288000,"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.es","description":"Amazon.es","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["spain"]},{"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":"ddg@search.mozilla.org","syncGUID":"{0ba11e74-9a96-4565-a55b-7ce48ddb6e08}","version":"1.4","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"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":1593527686918,"updateDate":1591132288000,"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":"{8a5d0a8d-d81c-46f9-b284-afc409833500}","version":"1.4","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"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":1593527686966,"updateDate":1591132288000,"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":"qwant@search.mozilla.org","syncGUID":"{42f3a180-1368-4f60-a70b-59c55152c3c3}","version":"1.4","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Qwant","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1593527687006,"updateDate":1591132288000,"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/qwant/","location":"app-builtin"},{"id":"wikipedia@search.mozilla.org","syncGUID":"{4cb4844d-1321-4ac6-a173-f5b737216358}","version":"1.3","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"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":1593527687230,"updateDate":1591132288000,"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":"위키백과 (ko)","description":"Wikipedia, the free encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["kr"]},{"name":"Вікіпедыя (be)","description":"Вікіпедыя, свабодная энцыклапедыя","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["be"]},{"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 (pa)","description":"ਵਿਕਿਪੀਡਿਆ, ਮੁਫ਼ਤ/ਮੁਕਤ ਸ਼ਬਦਕੋਸ਼","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["pa"]},{"name":"Wikipedia (id)","description":"Wikipedia, ensiklopedia bebas","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["id"]},{"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":"ვიკიპედია (ka)","description":"ვიკიპედია, თავისუფალი ენციკლოპედია","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ka"]},{"name":"Wikipedia (vi)","description":"Wikipedia, bách khoa toàn thư mở","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["vi"]},{"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":"langpack-fr@firefox-esr.mozilla.org","syncGUID":"{5cf0e1d6-56f9-4de9-b928-f7a122e40a72}","version":"115.4.20231016.232700","type":"locale","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Language: Français (French)","description":"Firefox Language Pack for Français (fr) – French","creator":"mozfr.org (contributors: L’équipe francophone)","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1591132288000,"updateDate":1698182488000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox-esr/browser/extensions/langpack-fr@firefox-esr.mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":true,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"115.0","maxVersion":"115.*"}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"userPermissions":null,"optionalPermissions":null,"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"chromeEntries":[["locale","app-marketplace-icons","fr","browser/chrome/browser/locale/fr/app-marketplace-icons/"],["locale","branding","fr","browser/chrome/fr/locale/branding/"],["locale","browser","fr","browser/chrome/fr/locale/browser/"],["locale","browser-region","fr","browser/chrome/fr/locale/browser-region/"],["locale","devtools","fr","browser/chrome/fr/locale/fr/devtools/client/"],["locale","devtools-shared","fr","browser/chrome/fr/locale/fr/devtools/shared/"],["locale","formautofill","fr","browser/features/formautofill@mozilla.org/fr/locale/fr/"],["locale","report-site-issue","fr","browser/features/webcompat-reporter@mozilla.org/fr/locale/fr/"],["locale","alerts","fr","chrome/fr/locale/fr/alerts/"],["locale","autoconfig","fr","chrome/fr/locale/fr/autoconfig/"],["locale","global","fr","chrome/fr/locale/fr/global/"],["locale","global-platform","fr","chrome/fr/locale/fr/global-platform/unix/"],["locale","mozapps","fr","chrome/fr/locale/fr/mozapps/"],["locale","necko","fr","chrome/fr/locale/fr/necko/"],["locale","passwordmgr","fr","chrome/fr/locale/fr/passwordmgr/"],["locale","pdf.js","fr","chrome/fr/locale/pdfviewer/"],["locale","pipnss","fr","chrome/fr/locale/fr/pipnss/"],["locale","pippki","fr","chrome/fr/locale/fr/pippki/"],["locale","places","fr","chrome/fr/locale/fr/places/"]],"langpackId":"langpack-fr-browser","l10nRegistrySources":{"toolkit":"","browser":"browser/"},"languages":["fr"]},"hidden":false,"installTelemetryInfo":{"source":"app-global","method":"sideload"},"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox-esr/browser/extensions/langpack-fr@firefox-esr.mozilla.org.xpi!/","location":"app-global"},{"id":"default-theme@mozilla.org","syncGUID":"{ab833631-abfa-4d6c-aa8e-62dbd3b1cc73}","version":"1.3","type":"theme","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"System theme — auto","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":1699527695581,"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://default-theme/","location":"app-builtin"},{"id":"addons-search-detection@mozilla.com","syncGUID":"{b393dfe5-aa3e-4257-9cf4-049abad8e700}","version":"2.0.0","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Add-ons Search Detection","description":"","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1699527703023,"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":["telemetry","webRequest","webRequestBlocking"],"origins":[""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://builtin-addons/search-detection/","location":"app-builtin"},{"id":"firefox-compact-light@mozilla.org","syncGUID":"{0456bd7a-278a-4cd7-9cbb-d9849b60eb2f}","version":"1.2","type":"theme","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"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":1699527711674,"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":"firefox-compact-dark@mozilla.org","syncGUID":"{0605274f-54bc-4b5a-948c-c7375c0e46ac}","version":"1.2","type":"theme","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"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":1699527711677,"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-alpenglow@mozilla.org","syncGUID":"{7cbc1518-beec-459d-98c4-6b911b7c3d86}","version":"1.4","type":"theme","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"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":1699527711681,"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":"qwantcomforfirefox@jetpack","syncGUID":"{19335119-ef14-4e7c-9a7a-20db246db4cd}","version":"7.0.4.9","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":"pages/options.html","optionsType":3,"optionsBrowserStyle":false,"aboutURL":null,"defaultLocale":{"name":"Qwant VIPrivacy","description":"Qwant VIPrivacy sets qwant.com as your default search engine, blocks trackers for you to protect your personal data while you browse","creator":"Qwant","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1593527823000,"updateDate":1699527741591,"applyBackgroundUpdates":1,"path":"/home/svpro_gnu/.mozilla/firefox/oi40lopp.default-esr/extensions/qwantcomforfirefox@jetpack.xpi","skinnable":false,"sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3996872/qwantcom_for_firefox-7.0.4.9.xpi","releaseNotesURI":"https://addons.mozilla.org/fr-FR/firefox/addon/qwantcom-for-firefox/versions/7.0.4.9/updateinfo/","softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Qwant VIPrivacy","description":"Qwant VIPrivacy sets qwant.com as your default search engine, blocks trackers for you to protect your personal data while you browse","creator":"Qwant","developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Qwant VIPrivacy","description":"Qwant VIPrivacy définit qwant.com comme moteur de recherche par défaut, bloque les traqueurs et protège vos données personnelles.","creator":"Qwant","developers":null,"translators":null,"contributors":null,"locales":["fr"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"78.0","maxVersion":null}],"targetPlatforms":[],"signedState":2,"signedDate":1662017713000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["storage"],"origins":["https://*.qwant.com/*"]},"optionalPermissions":{"permissions":["webRequest","webRequestBlocking","webNavigation"],"origins":[""]},"icons":{"16":"assets/icons/green-16.png","128":"assets/icons/green-128.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"unknown","sourceURL":"https://www.qwant.com/?l=fr","method":"link"},"recommendationState":null,"rootURI":"jar:file:///home/svpro_gnu/.mozilla/firefox/oi40lopp.default-esr/extensions/qwantcomforfirefox@jetpack.xpi!/","location":"app-profile"},{"id":"uBlock0@raymondhill.net","syncGUID":"{081fb57f-8cbd-411d-90de-6e05db26d161}","version":"1.53.0","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":"dashboard.html","optionsType":3,"optionsBrowserStyle":false,"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":1593520750000,"updateDate":1699534058475,"applyBackgroundUpdates":1,"path":"/home/svpro_gnu/.mozilla/firefox/oi40lopp.default-esr/extensions/uBlock0@raymondhill.net.xpi","skinnable":false,"sourceURI":"https://addons.mozilla.org/firefox/downloads/file/4188488/ublock_origin-1.53.0.xpi","releaseNotesURI":"https://addons.mozilla.org/fr-FR/firefox/addon/ublock-origin/versions/1.53.0/updateinfo/","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":"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":"高効率ブロッカーついに登場。CPU とメモリーに負担をかけません。","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"uBlock Origin","description":"Enfin un blocador eficaç. Sollicita pauc lo CPU e la memòria","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["oc"]},{"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":"మొత్తానికి RAM ఇంకా CPU పై తేలికయిన, ఒక సమర్థవంతమైన నిరోధిని.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["te"]},{"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":"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":"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":"অবশেষে, একটি সাশ্রয়ী বিজ্ঞাপন রোধক। সিপিইউ এবং মেমরিতে নমনীয়।","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["bn"]},{"name":"uBlock Origin","description":"Ugu dambeyntii, xannibaado hufan. Ku fudud oo ku saabsan CPU iyo xusuusta.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["so"]},{"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":"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":"Ä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":"ಕೊನೆಗೂ, ಒಂದು ದಕ್ಷ ನಿರ್ಬಂಧಕ. ಮಿತವಾದ ಸಿಪಿಯೂ ಹಾಗು ಮೆಮೊರಿ ಬಳಕೆ.","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":"අවසානයේදී, මධ්‍ය සැකසුම් ඒකකය සහ මතකය අඩුවෙන් භාවිතා කරන කාර්යක්‍ෂම අවහිරකයක් ඇත.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["si"]},{"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":"Hatimaye, kizuizi kinachofaa. Nyepesi kwenye CPU na kumbukumbu.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["sw"]},{"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":"آخر کار، ایک مؤثر اشتہار کو روکنے والا، یہ کم cpu اور میموری لیتا ہے.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ur"]},{"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":["ka"]},{"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":"आख़िरकार, क्रोमियम-बेस्ड ब्राउज़रों के लिए एक कुशल अवरोधक। CPU और स्मृति पर आसान।","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["hi"]},{"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":"இறுதியாக, ஒரு திறமையான விளம்பரத் தடுப்பான். கணினியின் மையச் செயற்பகுதியின் மேலும் நினைவகத்தின் மேலும் இலகுவானது.","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":"Endelig en effektiv blokkeringsutvidelse. Lavt CPU- og minnebruk.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["no"]},{"name":"uBlock Origin","description":"Endlich ein effizienter Blocker, der wenig Prozessorleistung und Arbeitsspeicher verbraucht.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"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":["mk"]},{"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":"Ó 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":"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":"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":["sr"]},{"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":"അവസാനം, ഒരു കാര്യക്ഷമമായ ബ്ലോക്കര്‍. ലഘുവായ CPU, memory ഉപയോഗം.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["ml"]},{"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":"بالاخره، یک بلاکر کارآمد. کم حجم بر روی پردازنده و حافظه.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["fa"]},{"name":"uBlock Origin","description":"Mainam na pangharang sa content. Magaan sa CPU at memorya.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["fil"]},{"name":"uBlock Origin","description":"Viimeinkin tehokas estotyökalu, joka ei kuormita prosessoria ja muistia.","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":["cv"]},{"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":"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":"一款高效的网络请求过滤工具,占用极低的内存和 CPU。","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"uBlock Origin","description":"Erfin, ur stanker saotradurioù efedus hag a zouj d'ho reizhiad korvoiñ ha d'ho memor.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["br-FR"]},{"name":"uBlock Origin","description":"Нарэшце, эфектыўны блакавальнік. Не нагружае працэсар і памяць.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["be"]},{"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":"Î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":"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":"અંતે, એક કાર્યક્ષમ અવરોધક. સીપીયુ અને મેમરી પર સરળ.","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["gu"]},{"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":"終於有套使用不多的 CPU 及記憶體資源的高效率阻擋器。","creator":"Raymond Hill & contributors","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"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":"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":"סוף סוף, חוסם יעיל. קל על המעבד והזיכרון.","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"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"78.0","maxVersion":null}],"targetPlatforms":[],"signedState":2,"signedDate":1698928289000,"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/*","https://*.letsblock.it/*","https://github.com/uBlockOrigin/*","https://ublockorigin.github.io/*","https://*.reddit.com/r/uBlockOrigin/*"]},"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://8ab465eb-0889-485e-b54f-02952cba652c/web_accessible_resources/*"],"windowId":null},["blocking"]],[{"incognito":null,"tabId":null,"types":null,"urls":["http://*/*","https://*/*","ws://*/*","wss://*/*"],"windowId":null},["blocking"]]]}}},"hidden":false,"installTelemetryInfo":{"source":"amo","sourceURL":"https://addons.mozilla.org/fr/firefox/search/?q=ublock&platform=Linux&appver=68.9.0","method":"amWebAPI"},"recommendationState":{"validNotAfter":1856716288000,"validNotBefore":1698928288000,"states":["recommended-android","recommended"]},"rootURI":"jar:file:///home/svpro_gnu/.mozilla/firefox/oi40lopp.default-esr/extensions/uBlock0@raymondhill.net.xpi!/","location":"app-profile"}]} \ No newline at end of file diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/extensions/qwantcomforfirefox@jetpack.xpi b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/extensions/qwantcomforfirefox@jetpack.xpi index adc57e2..88a53ec 100644 Binary files a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/extensions/qwantcomforfirefox@jetpack.xpi and b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/extensions/qwantcomforfirefox@jetpack.xpi differ diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/extensions/uBlock0@raymondhill.net.xpi b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/extensions/uBlock0@raymondhill.net.xpi index 358f9c2..c385d2a 100644 Binary files a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/extensions/uBlock0@raymondhill.net.xpi and b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/extensions/uBlock0@raymondhill.net.xpi differ diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/favicons.sqlite b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/favicons.sqlite index 6d59d4c..3c008ad 100644 Binary files a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/favicons.sqlite and b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/favicons.sqlite differ diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/formhistory.sqlite b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/formhistory.sqlite index dc0866e..442420e 100644 Binary files a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/formhistory.sqlite and b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/formhistory.sqlite differ diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/handlers.json b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/handlers.json index 01b01c1..aa06575 100644 --- a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/handlers.json +++ b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/handlers.json @@ -1 +1 @@ -{"defaultHandlersVersion":{"fr":3},"mimeTypes":{"application/pdf":{"action":3,"extensions":["pdf"]}},"schemes":{"ircs":{"action":2,"ask":true,"handlers":[null,{"name":"Mibbit","uriTemplate":"https://www.mibbit.com/?url=%s"}]},"mailto":{"action":4,"handlers":[null,{"name":"Yahoo! Mail","uriTemplate":"https://compose.mail.yahoo.com/?To=%s"},{"name":"Gmail","uriTemplate":"https://mail.google.com/mail/?extsrc=mailto&url=%s"}]},"irc":{"action":2,"ask":true,"handlers":[null,{"name":"Mibbit","uriTemplate":"https://www.mibbit.com/?url=%s"}]}}} \ No newline at end of file +{"defaultHandlersVersion":{"fr":3},"mimeTypes":{"application/pdf":{"action":3,"extensions":["pdf"]},"image/webp":{"action":3,"extensions":["webp"]},"image/avif":{"action":3,"extensions":["avif"]}},"schemes":{"ircs":{"action":2,"ask":true,"handlers":[null,{"name":"Mibbit","uriTemplate":"https://www.mibbit.com/?url=%s"}]},"mailto":{"action":4,"handlers":[null,{"name":"Yahoo! Mail","uriTemplate":"https://compose.mail.yahoo.com/?To=%s"},{"name":"Gmail","uriTemplate":"https://mail.google.com/mail/?extsrc=mailto&url=%s"}]},"irc":{"action":2,"ask":true,"handlers":[null,{"name":"Mibbit","uriTemplate":"https://www.mibbit.com/?url=%s"}]}},"isDownloadsImprovementsAlreadyMigrated":true,"isSVGXMLAlreadyMigrated":true} \ No newline at end of file diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/permissions.sqlite b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/permissions.sqlite index 248f8ee..a25eab5 100644 Binary files a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/permissions.sqlite and b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/permissions.sqlite differ diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/places.sqlite b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/places.sqlite index 9361f36..0e96582 100644 Binary files a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/places.sqlite and b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/places.sqlite differ diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/prefs.js b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/prefs.js index 4e8297d..9fd29f6 100644 --- a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/prefs.js +++ b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/prefs.js @@ -10,81 +10,123 @@ // - set it within a user.js file in your profile. user_pref("app.normandy.first_run", false); -user_pref("app.update.lastUpdateTime.addon-background-update-timer", 1593520992); +user_pref("app.normandy.migrationsApplied", 12); +user_pref("app.normandy.user_id", "e36e3d26-bbce-455b-881e-04d24700810a"); +user_pref("app.shield.optoutstudies.enabled", false); +user_pref("app.update.lastUpdateTime.addon-background-update-timer", 1699527723); user_pref("app.update.lastUpdateTime.blocklist-background-update-timer", 1593521140); -user_pref("app.update.lastUpdateTime.browser-cleanup-thumbnails", 1593520632); +user_pref("app.update.lastUpdateTime.browser-cleanup-thumbnails", 1699533781); +user_pref("app.update.lastUpdateTime.recipe-client-addon-run", 1699527723); +user_pref("app.update.lastUpdateTime.region-update-timer", 1699527723); user_pref("app.update.lastUpdateTime.search-engine-update-timer", 1593520752); -user_pref("app.update.lastUpdateTime.services-settings-poll-changes", 1593520872); -user_pref("app.update.lastUpdateTime.telemetry_modules_ping", 0); -user_pref("app.update.lastUpdateTime.xpi-signature-verification", 0); +user_pref("app.update.lastUpdateTime.services-settings-poll-changes", 1699527723); +user_pref("app.update.lastUpdateTime.telemetry_modules_ping", 1699527752); +user_pref("app.update.lastUpdateTime.xpi-signature-verification", 1699527723); +user_pref("browser.bookmarks.defaultLocation", "unfiled"); user_pref("browser.bookmarks.restore_default_bookmarks", false); user_pref("browser.cache.disk.amount_written", 21234); user_pref("browser.cache.disk.capacity", 153600); user_pref("browser.cache.disk.filesystem_reported", 1); user_pref("browser.contentblocking.category", "standard"); +user_pref("browser.contextual-services.contextId", "{0fab92cb-58bc-4ed5-8a8c-e23dba1a8406}"); user_pref("browser.download.useDownloadDir", false); +user_pref("browser.download.viewableInternally.typeWasRegistered.avif", true); +user_pref("browser.download.viewableInternally.typeWasRegistered.webp", true); +user_pref("browser.engagement.home-button.has-used", true); user_pref("browser.laterrun.bookkeeping.profileCreationTime", 1593527682); -user_pref("browser.laterrun.bookkeeping.sessionCount", 2); -user_pref("browser.laterrun.enabled", true); -user_pref("browser.migration.version", 81); +user_pref("browser.laterrun.bookkeeping.sessionCount", 3); +user_pref("browser.migration.version", 137); +user_pref("browser.newtabpage.activity-stream.discoverystream.rec.impressions", "{\"453422269\":1699533914401,\"2895959998275989\":1699527713168,\"40159959757289\":1699527713171,\"3508097888324488\":1699534156222,\"345460376115206\":1699534156240}"); +user_pref("browser.newtabpage.activity-stream.discoverystream.spoc.impressions", "{\"438551245\":[1699527713163,1699533914399,1699534156227]}"); user_pref("browser.newtabpage.activity-stream.impressionId", "{effdba07-6315-46a3-bbf3-2ae788fc8e44}"); user_pref("browser.newtabpage.activity-stream.improvesearch.topSiteSearchShortcuts.havePinned", "google,amazon"); user_pref("browser.newtabpage.blocked", "{\"mZmevP23jfB3rScn/QCWnw==\":1,\"26UbzFJ7qT9/4DhodHKA1Q==\":1,\"4gPpjkxgZzXPVtuEoAL9Ig==\":1,\"BRX66S9KVyZQ1z3AIk0A7w==\":1,\"OPjKsY2+nKYne5FGvFanPA==\":1,\"T9nJot5PurhJSy8n038xGA==\":1,\"kxrobsDoR0Rc+f0aKbCypQ==\":1}"); user_pref("browser.newtabpage.pinned", "[]"); user_pref("browser.newtabpage.storageVersion", 1); -user_pref("browser.pageActions.persistedActions", "{\"version\":1,\"ids\":[\"bookmark\",\"pinTab\",\"bookmarkSeparator\",\"copyURL\",\"emailLink\",\"addSearchEngine\",\"sendToDevice\",\"pocket\",\"screenshots_mozilla_org\"],\"idsInUrlbar\":[\"pocket\",\"bookmark\"]}"); +user_pref("browser.pageActions.persistedActions", "{\"version\":1,\"ids\":[\"bookmark\"],\"idsInUrlbar\":[\"bookmark\"],\"idsInUrlbarPreProton\":[\"pocket\",\"bookmark\"]}"); user_pref("browser.pagethumbnails.storage_version", 3); -user_pref("browser.safebrowsing.provider.google4.lastupdatetime", "1593521155348"); -user_pref("browser.safebrowsing.provider.google4.nextupdatetime", "1593522927348"); -user_pref("browser.safebrowsing.provider.mozilla.lastupdatetime", "1593521114601"); -user_pref("browser.safebrowsing.provider.mozilla.nextupdatetime", "1593524714601"); +user_pref("browser.proton.toolbar.version", 3); +user_pref("browser.region.update.updated", 1699533782); +user_pref("browser.rights.3.shown", true); +user_pref("browser.safebrowsing.provider.google4.lastupdatetime", "1699533796838"); +user_pref("browser.safebrowsing.provider.google4.nextupdatetime", "1699535573838"); +user_pref("browser.safebrowsing.provider.mozilla.lastupdatetime", "1699527819004"); +user_pref("browser.safebrowsing.provider.mozilla.nextupdatetime", "1699549419004"); user_pref("browser.search.region", "FR"); -user_pref("browser.sessionstore.upgradeBackup.latestBuildID", "20200527211442"); +user_pref("browser.sessionstore.resume_session_once", true); +user_pref("browser.sessionstore.upgradeBackup.latestBuildID", "20231016232700"); user_pref("browser.slowStartup.averageTime", 5985); user_pref("browser.slowStartup.samples", 2); -user_pref("browser.startup.homepage", "https://www.qwant.com/?client=ext-firefox-hp"); -user_pref("browser.startup.homepage_override.buildID", "20200527211442"); -user_pref("browser.startup.homepage_override.extensionControlled", true); -user_pref("browser.startup.homepage_override.mstone", "68.9.0"); -user_pref("browser.startup.homepage_override.privateAllowed", true); -user_pref("browser.startup.lastColdStartupCheck", 1593521111); +user_pref("browser.startup.couldRestoreSession.count", 2); +user_pref("browser.startup.homepage", "https://svprognu.vermeulen.pro/"); +user_pref("browser.startup.homepage_override.buildID", "20231016232700"); +user_pref("browser.startup.homepage_override.mstone", "115.4.0"); +user_pref("browser.startup.lastColdStartupCheck", 1699534449); +user_pref("browser.startup.upgradeDialog.version", 106); +user_pref("browser.tabs.inTitlebar", 0); user_pref("browser.tabs.loadInBackground", false); -user_pref("browser.uiCustomization.state", "{\"placements\":{\"widget-overflow-fixed-list\":[],\"nav-bar\":[\"back-button\",\"forward-button\",\"stop-reload-button\",\"home-button\",\"customizableui-special-spring1\",\"urlbar-container\",\"customizableui-special-spring2\",\"downloads-button\",\"library-button\",\"sidebar-button\",\"fxa-toolbar-menu-button\",\"qwantcomforfirefox_jetpack-browser-action\",\"https-everywhere_eff_org-browser-action\",\"ublock0_raymondhill_net-browser-action\"],\"toolbar-menubar\":[\"menubar-items\"],\"TabsToolbar\":[\"tabbrowser-tabs\",\"new-tab-button\",\"alltabs-button\"],\"PersonalToolbar\":[\"personal-bookmarks\"]},\"seen\":[\"developer-button\",\"qwantcomforfirefox_jetpack-browser-action\",\"https-everywhere_eff_org-browser-action\",\"ublock0_raymondhill_net-browser-action\"],\"dirtyAreaCache\":[\"nav-bar\",\"toolbar-menubar\",\"TabsToolbar\",\"PersonalToolbar\"],\"currentVersion\":16,\"newElementCount\":2}"); +user_pref("browser.toolbars.bookmarks.visibility", "always"); +user_pref("browser.topsites.contile.cacheValidFor", 11018); +user_pref("browser.topsites.contile.cachedTiles", "[{\"id\":74357,\"name\":\"Amazon\",\"url\":\"https://www.amazon.fr/?tag=admarketpla00-21&ref=pd_sl_94a299c883eba8267593adffcee5d6d610579df0436f6927782413c0&mfadid=adm\",\"click_url\":\"https://bridge.sfo1.ap01.net/ctp?version=16.0.0&ci=1699531351137.12791&key=1699531351400500000.1&ctag=pd_sl_94a299c883eba8267593adffcee5d6d610579df0436f6927782413c0\",\"image_url\":\"https://contile-images.services.mozilla.com/obgoOYObjIFea_bXuT6L4LbBJ8j425AD87S1HMD3BWg.9991.jpg\",\"image_size\":200,\"impression_url\":\"https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpkX4Qq%2B4CfXfZDX4pbW4CbWfpbW7ReNxR3UIG8zInwYIFIVs9eYiGINHrwkiFXwxYIZjF8XgClWfC2X7R4dHQ8zJnErj%3DcO7R4dHQfz4Z2Z4CxnHG3Z5FwqgCfX1p8d4Cxr1BINI9HuiF2z4Z2Z4CxnHmcux%3DcvImauiF2zfQlX4px%2B7ncqIr7VjGbuiF2zfCfr4CbY4Zfnj9wWIBdvIpkY7R4TJr2uJREuHnEYgClnHr7wHG3vjnDuiF2z4Z2r7ReTHF4wJFEUjtdvIpkXfpbr\"},{\"id\":74725,\"name\":\"Nike\",\"url\":\"https://www.nike.com/fr/?cp=19040524063_search_1699531351400500000&mfadid=adm\",\"click_url\":\"https://bridge.sfo1.admarketplace.net/ctp?version=16.0.0&ci=1699531351137.12791&key=1699531351400500000.2&ctag=1699531351400500000\",\"image_url\":\"https://contile-images.services.mozilla.com/QA_akT5F6yXF6g4EDJaPjPR1h47WLNpAKVc0LGVtSW4.5182.jpg\",\"image_size\":200,\"impression_url\":\"https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpkX4Qq%2B4CfXfZDX4pbW4CbWfpbW7ReNxR3UIG8zInwYIFIVs9eYiGINHrwkiFXwxYIZjF8XgClWfC2X7R4dHQ8zJnErj%3DcO7R4dHQfz4Z2rfQDnHG3Z5FwqgCfX1p8d4Cxr1BINI9HuiF2z4Z2rfQDnHmcux%3DcvImauiF2zfQl%2BfZLZ7ncqIr7VjGbuiF2zfCDkfClY4pfnj9wWIBdvIpkY7R4TJr2uJREuHnEYgC8nHr7wHG3vjnDuiF2zfC8r4YIWJ%3DcQIFdwJR2uiF2zfCbW4Wyy\"}]"); +user_pref("browser.topsites.contile.lastFetch", 1699534450); +user_pref("browser.uiCustomization.state", "{\"placements\":{\"widget-overflow-fixed-list\":[],\"unified-extensions-area\":[],\"nav-bar\":[\"back-button\",\"forward-button\",\"stop-reload-button\",\"home-button\",\"customizableui-special-spring1\",\"urlbar-container\",\"customizableui-special-spring2\",\"save-to-pocket-button\",\"downloads-button\",\"fxa-toolbar-menu-button\",\"qwantcomforfirefox_jetpack-browser-action\",\"https-everywhere_eff_org-browser-action\",\"ublock0_raymondhill_net-browser-action\",\"unified-extensions-button\"],\"toolbar-menubar\":[\"menubar-items\"],\"TabsToolbar\":[\"firefox-view-button\",\"tabbrowser-tabs\",\"new-tab-button\",\"alltabs-button\"],\"PersonalToolbar\":[\"personal-bookmarks\"]},\"seen\":[\"developer-button\",\"qwantcomforfirefox_jetpack-browser-action\",\"https-everywhere_eff_org-browser-action\",\"ublock0_raymondhill_net-browser-action\",\"save-to-pocket-button\"],\"dirtyAreaCache\":[\"nav-bar\",\"toolbar-menubar\",\"TabsToolbar\",\"PersonalToolbar\"],\"currentVersion\":19,\"newElementCount\":2}"); user_pref("browser.urlbar.placeholderName", "Qwant"); +user_pref("browser.urlbar.quicksuggest.migrationVersion", 2); +user_pref("browser.urlbar.quicksuggest.scenario", "history"); user_pref("browser.urlbar.suggest.searches", true); +user_pref("browser.urlbar.tipShownCount.searchTip_onboard", 2); user_pref("datareporting.policy.dataSubmissionPolicyAcceptedVersion", 2); user_pref("datareporting.policy.dataSubmissionPolicyNotifiedTime", "1593527686361"); user_pref("devtools.onboarding.telemetry.logged", true); -user_pref("distribution.iniFile.exists.appversion", "68.9.0"); +user_pref("distribution.iniFile.exists.appversion", "115.4.0"); user_pref("distribution.iniFile.exists.value", false); +user_pref("doh-rollout.doneFirstRun", true); +user_pref("doh-rollout.home-region", "FR"); +user_pref("dom.forms.autocomplete.formautofill", true); +user_pref("dom.push.userAgentID", "a558bb4c69c24b93960a86e9474b3c5f"); user_pref("extensions.activeThemeID", "default-theme@mozilla.org"); user_pref("extensions.blocklist.lastModified", "Mon, 22 Jun 2020 17:21:14 GMT"); user_pref("extensions.blocklist.pingCountTotal", 2); -user_pref("extensions.blocklist.pingCountVersion", 2); -user_pref("extensions.databaseSchema", 31); -user_pref("extensions.getAddons.cache.lastUpdate", 1593520993); -user_pref("extensions.getAddons.databaseSchema", 5); +user_pref("extensions.blocklist.pingCountVersion", -1); +user_pref("extensions.databaseSchema", 35); +user_pref("extensions.getAddons.cache.lastUpdate", 1699534448); +user_pref("extensions.getAddons.databaseSchema", 6); user_pref("extensions.incognito.migrated", true); -user_pref("extensions.lastAppBuildId", "20200527211442"); -user_pref("extensions.lastAppVersion", "68.9.0"); -user_pref("extensions.lastPlatformVersion", "68.9.0"); +user_pref("extensions.lastAppBuildId", "20231016232700"); +user_pref("extensions.lastAppVersion", "115.4.0"); +user_pref("extensions.lastPlatformVersion", "115.4.0"); user_pref("extensions.pendingOperations", false); +user_pref("extensions.pictureinpicture.enable_picture_in_picture_overrides", true); +user_pref("extensions.quarantinedDomains.list", "autoatendimento.bb.com.br,ibpf.sicredi.com.br,ibpj.sicredi.com.br,internetbanking.caixa.gov.br,www.ib12.bradesco.com.br,www2.bancobrasil.com.br"); user_pref("extensions.systemAddonSet", "{\"schema\":1,\"addons\":{}}"); user_pref("extensions.ui.dictionary.hidden", true); user_pref("extensions.ui.lastCategory", "addons://list/locale"); user_pref("extensions.ui.locale.hidden", false); +user_pref("extensions.webcompat.enable_shims", true); user_pref("extensions.webcompat.perform_injections", true); user_pref("extensions.webcompat.perform_ua_overrides", true); user_pref("extensions.webextensions.ExtensionStorageIDB.migrated.https-everywhere@eff.org", true); user_pref("extensions.webextensions.ExtensionStorageIDB.migrated.qwantcomforfirefox@jetpack", true); user_pref("extensions.webextensions.ExtensionStorageIDB.migrated.uBlock0@raymondhill.net", true); -user_pref("extensions.webextensions.uuids", "{\"formautofill@mozilla.org\":\"e1c4f299-d19b-4d2a-8aab-2e7f5ba1f4f1\",\"fxmonitor@mozilla.org\":\"268b3182-4ea8-4199-a851-b7250a6d739d\",\"screenshots@mozilla.org\":\"388cb745-08b9-469c-981e-fd62717f0fef\",\"webcompat-reporter@mozilla.org\":\"0aa6d411-d472-4bd0-ad3b-7171b5a0532c\",\"webcompat@mozilla.org\":\"5631e563-ae3c-4884-9d16-cfb4933130a3\",\"default-theme@mozilla.org\":\"bc8e10a9-6d27-4894-a669-42acfb24638f\",\"google@search.mozilla.org\":\"f8e71ff8-b565-4ba6-b14e-3c62bc538c56\",\"bing@search.mozilla.org\":\"904b65a9-eae9-4de7-8382-45d4a38469cf\",\"amazon@search.mozilla.org\":\"9a4386f9-74f5-44f6-a77e-665d07db9970\",\"ddg@search.mozilla.org\":\"133d212e-370b-478b-910f-eaaf62304fd4\",\"ebay@search.mozilla.org\":\"6aca342b-a129-4125-83ea-ff4f9195945f\",\"qwant@search.mozilla.org\":\"3bd74af4-2d5f-4d00-8d5c-4c9f1347d64d\",\"wikipedia@search.mozilla.org\":\"c6fff4e0-6470-45ce-9145-7a2521ed485c\",\"qwantcomforfirefox@jetpack\":\"04d2203d-b462-4193-820b-b66349dcd9b5\",\"https-everywhere@eff.org\":\"fd3762ae-36a1-4c64-a0a2-305dce832e38\",\"uBlock0@raymondhill.net\":\"8ab465eb-0889-485e-b54f-02952cba652c\"}"); +user_pref("extensions.webextensions.uuids", "{\"formautofill@mozilla.org\":\"e1c4f299-d19b-4d2a-8aab-2e7f5ba1f4f1\",\"fxmonitor@mozilla.org\":\"268b3182-4ea8-4199-a851-b7250a6d739d\",\"screenshots@mozilla.org\":\"388cb745-08b9-469c-981e-fd62717f0fef\",\"webcompat-reporter@mozilla.org\":\"0aa6d411-d472-4bd0-ad3b-7171b5a0532c\",\"webcompat@mozilla.org\":\"5631e563-ae3c-4884-9d16-cfb4933130a3\",\"default-theme@mozilla.org\":\"bc8e10a9-6d27-4894-a669-42acfb24638f\",\"google@search.mozilla.org\":\"f8e71ff8-b565-4ba6-b14e-3c62bc538c56\",\"bing@search.mozilla.org\":\"904b65a9-eae9-4de7-8382-45d4a38469cf\",\"amazon@search.mozilla.org\":\"9a4386f9-74f5-44f6-a77e-665d07db9970\",\"ddg@search.mozilla.org\":\"133d212e-370b-478b-910f-eaaf62304fd4\",\"ebay@search.mozilla.org\":\"6aca342b-a129-4125-83ea-ff4f9195945f\",\"qwant@search.mozilla.org\":\"3bd74af4-2d5f-4d00-8d5c-4c9f1347d64d\",\"wikipedia@search.mozilla.org\":\"c6fff4e0-6470-45ce-9145-7a2521ed485c\",\"qwantcomforfirefox@jetpack\":\"04d2203d-b462-4193-820b-b66349dcd9b5\",\"https-everywhere@eff.org\":\"fd3762ae-36a1-4c64-a0a2-305dce832e38\",\"uBlock0@raymondhill.net\":\"8ab465eb-0889-485e-b54f-02952cba652c\",\"pictureinpicture@mozilla.org\":\"22b04ce6-5e23-4dd2-9111-59b0de43b48f\",\"addons-search-detection@mozilla.com\":\"1dd26236-6867-4e99-a0eb-2771d27dffe3\"}"); +user_pref("gecko.handlerService.defaultHandlersVersion", 1); +user_pref("idle.lastDailyNotification", 1699527994); user_pref("media.eme.enabled", true); -user_pref("media.gmp-manager.buildID", "20200527211442"); -user_pref("media.gmp-manager.lastCheck", 1593521032); +user_pref("media.gmp-gmpopenh264.abi", "x86_64-gcc3"); +user_pref("media.gmp-gmpopenh264.hashValue", "53a58bfb4c8124ad4f7655b99bfdea290033a085e0796b19245b33b91c0948fdac9f0c3e817130b352493a65d9a7a0fc8a7c1eedc618cdaa2b4580734a11cd9c"); +user_pref("media.gmp-gmpopenh264.lastDownload", 1699527734); +user_pref("media.gmp-gmpopenh264.lastInstallStart", 1699527733); +user_pref("media.gmp-gmpopenh264.lastUpdate", 1699527735); +user_pref("media.gmp-gmpopenh264.version", "2.3.2"); +user_pref("media.gmp-manager.buildID", "20231016232700"); +user_pref("media.gmp-manager.lastCheck", 1699527797); +user_pref("media.gmp-manager.lastEmptyCheck", 1699527797); user_pref("media.gmp-widevinecdm.abi", "x86_64-gcc3"); -user_pref("media.gmp-widevinecdm.lastUpdate", 1593521034); -user_pref("media.gmp-widevinecdm.version", "4.10.1582.2"); +user_pref("media.gmp-widevinecdm.hashValue", "661ad969099a89a278384f56a17ae912c3542d585ea4981f3b9a3c6e1a07f8da6ffad9db29cee194bf7834adc3ca258c775cd2b0980e3e6cb7ee8b39600dad58"); +user_pref("media.gmp-widevinecdm.lastDownload", 1699527745); +user_pref("media.gmp-widevinecdm.lastInstallStart", 1699527733); +user_pref("media.gmp-widevinecdm.lastUpdate", 1699527747); +user_pref("media.gmp-widevinecdm.version", "4.10.2710.0"); user_pref("media.gmp.storage.version.observed", 1); user_pref("network.dns.disablePrefetch", true); user_pref("network.http.speculative-parallel-limit", 0); @@ -95,28 +137,59 @@ 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", 1699527994); user_pref("places.history.expiration.transient_current_max_pages", 25749); user_pref("plugin.disable_full_page_plugin_for_types", "application/pdf"); +user_pref("pref.browser.homepage.disable_button.current_page", false); user_pref("privacy.clearOnShutdown.downloads", false); user_pref("privacy.clearOnShutdown.formdata", false); user_pref("privacy.clearOnShutdown.history", false); user_pref("privacy.history.custom", true); +user_pref("privacy.purge_trackers.date_in_cookie_database", "0"); +user_pref("privacy.purge_trackers.last_purge", "1699527994768"); user_pref("privacy.sanitize.pending", "[]"); user_pref("privacy.sanitize.sanitizeOnShutdown", true); user_pref("privacy.sanitize.timeSpan", 0); user_pref("security.sandbox.content.tempDirSuffix", "9043d639-5158-4e59-afb8-2f277ad1d53d"); user_pref("security.sandbox.plugin.tempDirSuffix", "531a08a9-f67a-4833-bca5-53e1fdee8463"); user_pref("services.blocklist.pinning.checked", 1593521157); -user_pref("services.settings.clock_skew_seconds", -285); -user_pref("services.settings.last_etag", "\"1593478878894\""); -user_pref("services.settings.last_update_seconds", 1593521157); +user_pref("services.settings.blocklists.addons-bloomfilters.last_check", 1699534063); +user_pref("services.settings.blocklists.gfx.last_check", 1699534063); +user_pref("services.settings.clock_skew_seconds", 0); +user_pref("services.settings.last_etag", "\"1699520486171\""); +user_pref("services.settings.last_update_seconds", 1699534063); +user_pref("services.settings.main.addons-manager-settings.last_check", 1699534063); +user_pref("services.settings.main.anti-tracking-url-decoration.last_check", 1699534063); user_pref("services.settings.main.cfr-fxa.last_check", 1593521157); -user_pref("services.settings.main.cfr.last_check", 1593521157); -user_pref("services.settings.main.fxmonitor-breaches.last_check", 1593521157); -user_pref("services.settings.main.hijack-blocklists.last_check", 1593521157); -user_pref("services.settings.main.language-dictionaries.last_check", 1593521157); -user_pref("services.settings.main.sites-classification.last_check", 1593521157); -user_pref("services.settings.main.url-classifier-skip-urls.last_check", 1593521157); +user_pref("services.settings.main.cfr.last_check", 1699534063); +user_pref("services.settings.main.cookie-banner-rules-list.last_check", 1699534063); +user_pref("services.settings.main.devtools-compatibility-browsers.last_check", 1699534063); +user_pref("services.settings.main.devtools-devices.last_check", 1699534063); +user_pref("services.settings.main.doh-config.last_check", 1699534063); +user_pref("services.settings.main.doh-providers.last_check", 1699534063); +user_pref("services.settings.main.fxmonitor-breaches.last_check", 1699534063); +user_pref("services.settings.main.hijack-blocklists.last_check", 1699534063); +user_pref("services.settings.main.language-dictionaries.last_check", 1699534063); +user_pref("services.settings.main.message-groups.last_check", 1699534063); +user_pref("services.settings.main.normandy-recipes-capabilities.last_check", 1699534063); +user_pref("services.settings.main.partitioning-exempt-urls.last_check", 1699534063); +user_pref("services.settings.main.password-recipes.last_check", 1699534063); +user_pref("services.settings.main.password-rules.last_check", 1699534063); +user_pref("services.settings.main.personality-provider-models.last_check", 1699534063); +user_pref("services.settings.main.personality-provider-recipe.last_check", 1699534063); +user_pref("services.settings.main.pioneer-study-addons-v1.last_check", 1699534063); +user_pref("services.settings.main.search-config.last_check", 1699534063); +user_pref("services.settings.main.search-default-override-allowlist.last_check", 1699534063); +user_pref("services.settings.main.search-telemetry-v2.last_check", 1699534063); +user_pref("services.settings.main.sites-classification.last_check", 1699534063); +user_pref("services.settings.main.tippytop.last_check", 1699534063); +user_pref("services.settings.main.top-sites.last_check", 1699534063); +user_pref("services.settings.main.url-classifier-skip-urls.last_check", 1699534063); +user_pref("services.settings.main.websites-with-shared-credential-backends.last_check", 1699534063); +user_pref("services.settings.main.whats-new-panel.last_check", 1699534063); +user_pref("services.settings.security-state.cert-revocations.last_check", 1699527727); +user_pref("services.settings.security-state.intermediates.last_check", 1699527727); +user_pref("services.settings.security-state.onecrl.last_check", 1699527727); user_pref("services.settings.security.onecrl.checked", 1593521157); user_pref("services.sync.clients.lastSync", "0"); user_pref("services.sync.declinedEngines", ""); @@ -124,8 +197,11 @@ user_pref("services.sync.globalScore", 0); user_pref("services.sync.nextSync", 0); user_pref("services.sync.tabs.lastSync", "0"); user_pref("signon.importedFromSqlite", true); -user_pref("toolkit.startup.last_success", 1593521109); +user_pref("storage.vacuum.last.index", 0); +user_pref("storage.vacuum.last.places.sqlite", 1699527994); +user_pref("toolkit.startup.last_success", 1699534438); user_pref("toolkit.telemetry.cachedClientID", "c0ffeec0-ffee-c0ff-eec0-ffeec0ffeec0"); -user_pref("toolkit.telemetry.previousBuildID", "20200527211442"); +user_pref("toolkit.telemetry.pioneer-new-studies-available", true); +user_pref("toolkit.telemetry.previousBuildID", "20231016232700"); user_pref("toolkit.telemetry.reportingpolicy.firstRun", false); user_pref("trailhead.firstrun.didSeeAboutWelcome", true); diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/search.json.mozlz4 b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/search.json.mozlz4 index bf475ce..9127b81 100644 Binary files a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/search.json.mozlz4 and b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/search.json.mozlz4 differ diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage.sqlite b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage.sqlite index bfc0306..2f3ec9e 100644 Binary files a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage.sqlite and b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage.sqlite differ diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++04d2203d-b462-4193-820b-b66349dcd9b5^userContextId=4294967295/.metadata-v2 b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++04d2203d-b462-4193-820b-b66349dcd9b5^userContextId=4294967295/.metadata-v2 index 6e9ed18..f6ade7f 100644 Binary files a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++04d2203d-b462-4193-820b-b66349dcd9b5^userContextId=4294967295/.metadata-v2 and b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++04d2203d-b462-4193-820b-b66349dcd9b5^userContextId=4294967295/.metadata-v2 differ diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++04d2203d-b462-4193-820b-b66349dcd9b5^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++04d2203d-b462-4193-820b-b66349dcd9b5^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite index 721b47e..797f7c5 100644 Binary files a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++04d2203d-b462-4193-820b-b66349dcd9b5^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite and b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++04d2203d-b462-4193-820b-b66349dcd9b5^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite differ diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++8ab465eb-0889-485e-b54f-02952cba652c/.metadata-v2 b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++8ab465eb-0889-485e-b54f-02952cba652c/.metadata-v2 index 6686730..8f192a8 100644 Binary files a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++8ab465eb-0889-485e-b54f-02952cba652c/.metadata-v2 and b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++8ab465eb-0889-485e-b54f-02952cba652c/.metadata-v2 differ diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++8ab465eb-0889-485e-b54f-02952cba652c/idb/1671402671ueBglaorcokt0SCeahc.sqlite b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++8ab465eb-0889-485e-b54f-02952cba652c/idb/1671402671ueBglaorcokt0SCeahc.sqlite index 575ae31..1691cd8 100644 Binary files a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++8ab465eb-0889-485e-b54f-02952cba652c/idb/1671402671ueBglaorcokt0SCeahc.sqlite and b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++8ab465eb-0889-485e-b54f-02952cba652c/idb/1671402671ueBglaorcokt0SCeahc.sqlite differ diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++8ab465eb-0889-485e-b54f-02952cba652c^userContextId=4294967295/.metadata-v2 b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++8ab465eb-0889-485e-b54f-02952cba652c^userContextId=4294967295/.metadata-v2 index 2111bf8..be26333 100644 Binary files a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++8ab465eb-0889-485e-b54f-02952cba652c^userContextId=4294967295/.metadata-v2 and b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++8ab465eb-0889-485e-b54f-02952cba652c^userContextId=4294967295/.metadata-v2 differ diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++8ab465eb-0889-485e-b54f-02952cba652c^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++8ab465eb-0889-485e-b54f-02952cba652c^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite index a558763..2d8415f 100644 Binary files a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++8ab465eb-0889-485e-b54f-02952cba652c^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite and b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++8ab465eb-0889-485e-b54f-02952cba652c^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite differ diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++fd3762ae-36a1-4c64-a0a2-305dce832e38^userContextId=4294967295/.metadata-v2 b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++fd3762ae-36a1-4c64-a0a2-305dce832e38^userContextId=4294967295/.metadata-v2 index 2d9bebc..30daa6a 100644 Binary files a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++fd3762ae-36a1-4c64-a0a2-305dce832e38^userContextId=4294967295/.metadata-v2 and b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++fd3762ae-36a1-4c64-a0a2-305dce832e38^userContextId=4294967295/.metadata-v2 differ diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++fd3762ae-36a1-4c64-a0a2-305dce832e38^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++fd3762ae-36a1-4c64-a0a2-305dce832e38^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite index 17f8a53..c4b131c 100644 Binary files a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++fd3762ae-36a1-4c64-a0a2-305dce832e38^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite and b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/default/moz-extension+++fd3762ae-36a1-4c64-a0a2-305dce832e38^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite differ diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/permanent/chrome/idb/1657114595AmcateirvtiSty.sqlite b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/permanent/chrome/idb/1657114595AmcateirvtiSty.sqlite index a06b5a2..6e09a51 100644 Binary files a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/permanent/chrome/idb/1657114595AmcateirvtiSty.sqlite and b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/permanent/chrome/idb/1657114595AmcateirvtiSty.sqlite differ diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/permanent/chrome/idb/3561288849sdhlie.sqlite b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/permanent/chrome/idb/3561288849sdhlie.sqlite index 7758fa1..d62230d 100644 Binary files a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/permanent/chrome/idb/3561288849sdhlie.sqlite and b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/permanent/chrome/idb/3561288849sdhlie.sqlite differ diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/permanent/chrome/idb/3870112724rsegmnoittet-es.sqlite b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/permanent/chrome/idb/3870112724rsegmnoittet-es.sqlite index fe3f9af..c05eb31 100644 Binary files a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/permanent/chrome/idb/3870112724rsegmnoittet-es.sqlite and b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/storage/permanent/chrome/idb/3870112724rsegmnoittet-es.sqlite differ diff --git a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/xulstore.json b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/xulstore.json index 2694dd7..8cb6b24 100644 --- a/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/xulstore.json +++ b/config/includes.chroot/etc/skel/.mozilla/firefox/oi40lopp.default-esr/xulstore.json @@ -1 +1 @@ -{"chrome://browser/content/browser.xul":{"main-window":{"sizemode":"maximized"},"PersonalToolbar":{"collapsed":"false"}},"chrome://browser/content/sanitize.xul":{"SanitizeDialog":{"screenX":"456","screenY":"164"}}} \ No newline at end of file +{"chrome://browser/content/browser.xul":{"main-window":{"sizemode":"maximized"},"PersonalToolbar":{"collapsed":"false"}},"chrome://browser/content/sanitize.xul":{"SanitizeDialog":{"screenX":"456","screenY":"164"}},"chrome://browser/content/browser.xhtml":{"main-window":{"sizemode":"maximized"}}} \ No newline at end of file diff --git a/config/includes.chroot/usr/share/images/desktop-base/default b/config/includes.chroot/usr/share/images/desktop-base/default index 4f80857..a085f37 100644 Binary files a/config/includes.chroot/usr/share/images/desktop-base/default and b/config/includes.chroot/usr/share/images/desktop-base/default differ diff --git a/config/includes.chroot/usr/share/plymouth/themes/svpro_gnu/svprognu-grub.png b/config/includes.chroot/usr/share/plymouth/themes/svpro_gnu/svprognu-grub.png index 8f4fbb1..c795297 100644 Binary files a/config/includes.chroot/usr/share/plymouth/themes/svpro_gnu/svprognu-grub.png and b/config/includes.chroot/usr/share/plymouth/themes/svpro_gnu/svprognu-grub.png differ diff --git a/config/includes.chroot/usr/share/plymouth/themes/svpro_gnu/svprognu-splash.png b/config/includes.chroot/usr/share/plymouth/themes/svpro_gnu/svprognu-splash.png index 7cf2002..a085f37 100644 Binary files a/config/includes.chroot/usr/share/plymouth/themes/svpro_gnu/svprognu-splash.png and b/config/includes.chroot/usr/share/plymouth/themes/svpro_gnu/svprognu-splash.png differ diff --git a/config/includes.installer/usr/share/graphics/logo_debian.png b/config/includes.installer/usr/share/graphics/logo_debian.png index 59d10a1..3d838f4 100644 Binary files a/config/includes.installer/usr/share/graphics/logo_debian.png and b/config/includes.installer/usr/share/graphics/logo_debian.png differ diff --git a/config/package-lists/live.list.chroot b/config/package-lists/live.list.chroot index a7be3a8..b762681 100644 --- a/config/package-lists/live.list.chroot +++ b/config/package-lists/live.list.chroot @@ -4,8 +4,7 @@ live-config live-config-systemd # System -firmware-linux -firmware-b43-installer +firmware-linux-nonfree task-french-desktop task-xfce-desktop lxde-icon-theme @@ -34,21 +33,24 @@ bluetooth blueman samba screen +ntp # Graphiques scribus inkscape gimp flameshot +ksnip # Multimedia vlc simplescreenrecorder -openshot +openshot-qt audacity kodi obs-studio brasero +vokoscreen-ng # Utilitaires qtpass @@ -61,7 +63,6 @@ filezilla # Internet pidgin remmina -remmina-plugin-spice remmina-plugin-vnc firefox-esr firefox-esr-l10n-fr @@ -71,7 +72,7 @@ chromium chromium-l10n # Education -gcompris +gcompris-qt # Virtualisation spice-vdagent