diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-06-04 13:17:38 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-06-04 13:17:38 +0200 |
commit | a1be17c1cea81ebb1e8b131a662c698d78f3f7f2 (patch) | |
tree | a92f7de513be600cc07bac458183e9af40e00c06 /application/basilisk/app | |
parent | bf11fdd304898ac675e39b01b280d39550e419d0 (diff) | |
download | UXP-a1be17c1cea81ebb1e8b131a662c698d78f3f7f2.tar UXP-a1be17c1cea81ebb1e8b131a662c698d78f3f7f2.tar.gz UXP-a1be17c1cea81ebb1e8b131a662c698d78f3f7f2.tar.lz UXP-a1be17c1cea81ebb1e8b131a662c698d78f3f7f2.tar.xz UXP-a1be17c1cea81ebb1e8b131a662c698d78f3f7f2.zip |
Issue #303 Part 1: Move basilisk files from /browser to /application/basilisk
Diffstat (limited to 'application/basilisk/app')
20 files changed, 6114 insertions, 0 deletions
diff --git a/application/basilisk/app/Makefile.in b/application/basilisk/app/Makefile.in new file mode 100644 index 000000000..d807b4337 --- /dev/null +++ b/application/basilisk/app/Makefile.in @@ -0,0 +1,94 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +dist_dest = $(DIST)/$(MOZ_MACBUNDLE_NAME) + +# hardcode en-US for the moment +AB_CD = en-US + +# Build a binary bootstrapping with XRE_main + +ifndef MOZ_WINCONSOLE +ifneq (,$(MOZ_DEBUG)$(MOZ_ASAN)) +MOZ_WINCONSOLE = 1 +else +MOZ_WINCONSOLE = 0 +endif +endif + +# This switches $(INSTALL) to copy mode, like $(SYSINSTALL), so things that +# shouldn't get 755 perms need $(IFLAGS1) for either way of calling nsinstall. +NSDISTMODE = copy + +include $(topsrcdir)/config/config.mk + +ifeq ($(OS_ARCH),WINNT) +# Rebuild firefox.exe if the manifest changes - it's included by splash.rc. +# (this dependency should really be just for firefox.exe, not other targets) +# Note the manifest file exists in the tree, so we use the explicit filename +# here. +EXTRA_DEPS += basilisk.exe.manifest +endif + +PROGRAMS_DEST = $(DIST)/bin + +include $(topsrcdir)/config/rules.mk + +ifneq (,$(filter-out WINNT,$(OS_ARCH))) + +ifdef COMPILE_ENVIRONMENT +libs:: + cp -p $(MOZ_APP_NAME)$(BIN_SUFFIX) $(DIST)/bin/$(MOZ_APP_NAME)-bin$(BIN_SUFFIX) +endif + +GARBAGE += $(addprefix $(FINAL_TARGET)/defaults/pref/, firefox.js) + +endif + +# channel-prefs.js is handled separate from other prefs due to bug 756325 +libs:: $(srcdir)/profile/channel-prefs.js + $(NSINSTALL) -D $(DIST)/bin/defaults/pref + $(call py_action,preprocessor,-Fsubstitution $(PREF_PPFLAGS) $(ACDEFINES) $^ -o $(DIST)/bin/defaults/pref/channel-prefs.js) + +ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT)) + +MAC_APP_NAME = $(MOZ_APP_DISPLAYNAME) + +ifdef MOZ_DEBUG +MAC_APP_NAME := $(MAC_APP_NAME)Debug +endif + +AB_CD = $(MOZ_UI_LOCALE) + +ifeq (zh-TW,$(AB_CD)) +LPROJ_ROOT := $(subst -,_,$(AB_CD)) +else +LPROJ_ROOT := $(firstword $(subst -, ,$(AB_CD))) +endif +LPROJ := Contents/Resources/$(LPROJ_ROOT).lproj + +clean clobber repackage:: + $(RM) -r $(dist_dest) + +MAC_BUNDLE_VERSION = $(shell $(PYTHON) $(srcdir)/macversion.py --version=$(MOZ_APP_VERSION) --buildid=$(DEPTH)/buildid.h) + +.PHONY: repackage +tools repackage:: $(DIST)/bin/$(MOZ_APP_NAME) + $(MKDIR) -p $(dist_dest)/Contents/MacOS + $(MKDIR) -p $(dist_dest)/$(LPROJ) + rsync -a --exclude '*.in' $(srcdir)/macbuild/Contents $(dist_dest) --exclude English.lproj + rsync -a --exclude '*.in' $(srcdir)/macbuild/Contents/Resources/English.lproj/ $(dist_dest)/$(LPROJ) + sed -e 's/%APP_VERSION%/$(MOZ_APP_VERSION)/' -e 's/%MAC_APP_NAME%/$(MAC_APP_NAME)/' -e 's/%MOZ_MACBUNDLE_ID%/$(MOZ_MACBUNDLE_ID)/' -e 's/%MAC_BUNDLE_VERSION%/$(MAC_BUNDLE_VERSION)/' $(srcdir)/macbuild/Contents/Info.plist.in > $(dist_dest)/Contents/Info.plist + sed -e 's/%MAC_APP_NAME%/$(MAC_APP_NAME)/' $(srcdir)/macbuild/Contents/Resources/English.lproj/InfoPlist.strings.in | iconv -f UTF-8 -t UTF-16 > $(dist_dest)/$(LPROJ)/InfoPlist.strings + rsync -a --exclude-from='$(srcdir)/macbuild/Contents/MacOS-files.in' $(DIST)/bin/ $(dist_dest)/Contents/Resources + rsync -a --include-from='$(srcdir)/macbuild/Contents/MacOS-files.in' --exclude '*' $(DIST)/bin/ $(dist_dest)/Contents/MacOS + $(RM) $(dist_dest)/Contents/MacOS/$(MOZ_APP_NAME) + rsync -aL $(DIST)/bin/$(MOZ_APP_NAME) $(dist_dest)/Contents/MacOS + cp -RL $(DIST)/branding/firefox.icns $(dist_dest)/Contents/Resources/firefox.icns + cp -RL $(DIST)/branding/document.icns $(dist_dest)/Contents/Resources/document.icns + $(MKDIR) -p $(dist_dest)/Contents/Library/LaunchServices + mv -f $(dist_dest)/Contents/MacOS/updater.app/Contents/MacOS/org.mozilla.updater $(dist_dest)/Contents/Library/LaunchServices + ln -s ../../../../Library/LaunchServices/org.mozilla.updater $(dist_dest)/Contents/MacOS/updater.app/Contents/MacOS/org.mozilla.updater + printf APPLMOZB > $(dist_dest)/Contents/PkgInfo +endif diff --git a/application/basilisk/app/application.ini b/application/basilisk/app/application.ini new file mode 100644 index 000000000..05317eee9 --- /dev/null +++ b/application/basilisk/app/application.ini @@ -0,0 +1,50 @@ +#if MOZ_APP_STATIC_INI +#ifdef MOZ_BUILD_APP_IS_BROWSER +; This file is not used. If you modify it and want the application to use +; your modifications, move it under the browser/ subdirectory and start with +; the "-app /path/to/browser/application.ini" argument. +#else +; This file is not used. If you modify it and want the application to use +; your modifications, start with the "-app /path/to/application.ini" +; argument. +#endif +#endif +#if 0 +; This Source Code Form is subject to the terms of the Mozilla Public +; License, v. 2.0. If a copy of the MPL was not distributed with this +; file, You can obtain one at http://mozilla.org/MPL/2.0/. +#endif +#filter substitution +#include @TOPOBJDIR@/buildid.h +#include @TOPOBJDIR@/source-repo.h + +[App] +# Vendor=@MOZ_APP_VENDOR@ +Vendor=Moonchild Productions +# Name=@MOZ_APP_BASENAME@ +Name=Basilisk +RemotingName=@MOZ_APP_REMOTINGNAME@ +#ifdef MOZ_APP_DISPLAYNAME +CodeName=@MOZ_APP_DISPLAYNAME@ +#endif +Version=@MOZ_APP_VERSION@ +#ifdef MOZ_APP_PROFILE +Profile=@MOZ_APP_PROFILE@ +#endif +BuildID=@MOZ_BUILDID@ +#ifdef MOZ_SOURCE_REPO +SourceRepository=@MOZ_SOURCE_REPO@ +#endif +#ifdef MOZ_SOURCE_STAMP +SourceStamp=@MOZ_SOURCE_STAMP@ +#endif +ID=@MOZ_APP_ID@ + +[Gecko] +MinVersion=@GRE_MILESTONE@ +MaxVersion=@GRE_MILESTONE@ + +[XRE] +#ifdef MOZ_PROFILE_MIGRATOR +EnableProfileMigrator=1 +#endif
\ No newline at end of file diff --git a/application/basilisk/app/basilisk.exe.manifest b/application/basilisk/app/basilisk.exe.manifest new file mode 100644 index 000000000..079e15b58 --- /dev/null +++ b/application/basilisk/app/basilisk.exe.manifest @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> +<assemblyIdentity + version="1.0.0.0" + processorArchitecture="*" + name="Basilisk" + type="win32" +/> +<description>Firefox</description> +<dependency> + <dependentAssembly> + <assemblyIdentity + type="win32" + name="Microsoft.Windows.Common-Controls" + version="6.0.0.0" + processorArchitecture="*" + publicKeyToken="6595b64144ccf1df" + language="*" + /> + </dependentAssembly> +</dependency> +<ms_asmv3:trustInfo xmlns:ms_asmv3="urn:schemas-microsoft-com:asm.v3"> + <ms_asmv3:security> + <ms_asmv3:requestedPrivileges> + <ms_asmv3:requestedExecutionLevel level="asInvoker" uiAccess="false" /> + </ms_asmv3:requestedPrivileges> + </ms_asmv3:security> +</ms_asmv3:trustInfo> + <ms_asmv3:application xmlns:ms_asmv3="urn:schemas-microsoft-com:asm.v3"> + <ms_asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings"> + <dpiAware>True/PM</dpiAware> + </ms_asmv3:windowsSettings> + </ms_asmv3:application> + <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> + <application> + <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/> + <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/> + <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/> + <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/> + </application> + </compatibility> +</assembly> diff --git a/application/basilisk/app/blocklist.xml b/application/basilisk/app/blocklist.xml new file mode 100644 index 000000000..239fe43a4 --- /dev/null +++ b/application/basilisk/app/blocklist.xml @@ -0,0 +1,3608 @@ +<?xml version='1.0' encoding='UTF-8'?> +<blocklist lastupdate="1521130300000" xmlns="http://www.mozilla.org/2006/addons-blocklist"> + <emItems> + <emItem blockID="i988" id="{b12785f5-d8d0-4530-a3ea-5c4263b85bef}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i398" id="{377e5d4d-77e5-476a-8716-7e70a9272da0}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i698" id="{6b2a75c8-6e2e-4267-b955-43e25b54e575}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i1231" id="youtube@downloader.yt"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1263" id="axtara__web@axtara.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="1.1.1" severity="3"/> + </emItem> + <emItem blockID="i874" id="/^toolbar[0-9]*@findwide\.com$/"> + <prefs> + <pref>browser.startup.homepage</pref> + <pref>browser.search.defaultenginename</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i922" id="{34712C68-7391-4c47-94F3-8F88D49AD632}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="39.0a1"/> + </targetApplication> + </versionRange> + </emItem> + <emItem blockID="i196" id="info@wxdownloadmanager.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1078" id="/^(jid1-W4CLFIRExukJIFW@jetpack|jid1-W4CLFIRExukJIFW@jetpack_1|jid1-W3CLwrP[a-z]+@jetpack)$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i682" id="f6682b47-e12f-400b-9bc0-43b3ccae69d1@39d6f481-b198-4349-9ebe-9a93a86f9267.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i1024" id="{458fb825-2370-4973-bf66-9d7142141847}"> + <prefs> + <pref>app.update.auto</pref> + <pref>app.update.enabled</pref> + <pref>app.update.interval</pref> + <pref>app.update.url</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i522" id="/^({976cd962-e0ca-4337-aea7-d93fae63a79c}|{525ba996-1ce4-4677-91c5-9fc4ead2d245}|{91659dab-9117-42d1-a09f-13ec28037717}|{c1211069-1163-4ba8-b8b3-32fc724766be})$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i6" id="{3f963a5b-e555-4543-90e2-c3908898db71}"> + <prefs/> + <versionRange minVersion="0" maxVersion="8.5" severity="1"/> + </emItem> + <emItem blockID="i692" id="/^(j003-lqgrmgpcekslhg|SupraSavings|j003-dkqonnnthqjnkq|j003-kaggrpmirxjpzh)@jetpack$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i490" id="now.msn.com@services.mozilla.org"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i42" id="{D19CA586-DD6C-4a0a-96F8-14644F340D60}"> + <prefs/> + <versionRange minVersion="0.1" maxVersion="14.4.0" severity="1"/> + </emItem> + <emItem blockID="i756" id="{5eeb83d0-96ea-4249-942c-beead6847053}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i884" id="detgdp@gmail.com"> + <prefs> + <pref>browser.startup.homepage</pref> + <pref>browser.search.defaultenginename</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i543" id="{badea1ae-72ed-4f6a-8c37-4db9a4ac7bc9}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i53" id="{a3a5c777-f583-4fef-9380-ab4add1bc2a8}"> + <prefs/> + <versionRange minVersion="2.0.3" maxVersion="2.0.3" severity="3"/> + <versionRange minVersion="4.2" maxVersion="4.2" severity="3"/> + </emItem> + <emItem blockID="i487" id="{df6bb2ec-333b-4267-8c4f-3f27dc8c6e07}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1040" id="frhegnejkgner@grhjgewfewf.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1030" id="support@todoist.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="3.9" severity="1"/> + </emItem> + <emItem blockID="i523" id="/^({7e8a1050-cf67-4575-92df-dcc60e7d952d}|{b3420a9c-a397-4409-b90d-bcf22da1a08a}|{eca6641f-2176-42ba-bdbe-f3e327f8e0af}|{707dca12-3f99-4d94-afea-06dcc0ae0108}|{aea20431-87fc-40be-bc5b-18066fe2819c}|{30ee6676-1ba6-455a-a7e8-298fa863a546})$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i732" id="{e935dd68-f90d-46a6-b89e-c4657534b353}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="edad04eb-ea16-42f3-a4a7-20dded33cc37" id="@safesearchscoutee"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i436" id="/(\{7aeae561-714b-45f6-ace3-4a8aed6e227b\})|(\{01e86e69-a2f8-48a0-b068-83869bdba3d0\})|(\{77f5fe49-12e3-4cf5-abb4-d993a0164d9e\})/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i700" id="2bbadf1f-a5af-499f-9642-9942fcdb7c76@f05a14cc-8842-4eee-be17-744677a917ed.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i866" id="faststartff@gmail.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i320" id="torntv@torntv.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i524" id="/^({4e988b08-8c51-45c1-8d74-73e0c8724579}|{93ec97bf-fe43-4bca-a735-5c5d6a0a40c4}|{aed63b38-7428-4003-a052-ca6834d8bad3}|{0b5130a9-cc50-4ced-99d5-cda8cc12ae48}|{C4CFC0DE-134F-4466-B2A2-FF7C59A8BFAD})$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i1266" id="@stopad"> + <prefs/> + <versionRange minVersion="0" maxVersion="0.0.4" severity="1"/> + </emItem> + <emItem blockID="i537" id="rally_toolbar_ff@bulletmedia.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i914" id="{0153E448-190B-4987-BDE1-F256CADA672F}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="39.0a1"/> + </targetApplication> + </versionRange> + </emItem> + <emItem blockID="i496" id="{ACAA314B-EEBA-48e4-AD47-84E31C44796C}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i473" id="{81b13b5d-fba1-49fd-9a6b-189483ac548a}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i690" id="{55dce8ba-9dec-4013-937e-adbf9317d990"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i105" id="{95ff02bc-ffc6-45f0-a5c8-619b8226a9de}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i218" id="ffxtlbr@claro.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i626" id="{20AD702C-661E-4534-8CE9-BA4EC9AD6ECC}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i334" id="{0F827075-B026-42F3-885D-98981EE7B1AE}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="3fd71895-7fc6-4f3f-aa22-1cbb0c5fd922" id="/^({95E84BD3-3604-4AAC-B2CA-D9AC3E55B64B}|{E3605470-291B-44EB-8648-745EE356599A}|{95E5E0AD-65F9-4FFC-A2A2-0008DCF6ED25}|{FF20459C-DA6E-41A7-80BC-8F4FEFD9C575}|{6E727987-C8EA-44DA-8749-310C0FBE3C3E}|{12E8A6C2-B125-479F-AB3C-13B8757C7F04}|{EB6628CF-0675-4DAE-95CE-EFFA23169743})$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i716" id="{cc6cc772-f121-49e0-b1f0-c26583cb0c5e}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i501" id="xivars@aol.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i360" id="ytd@mybrowserbar.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i666" id="wecarereminder@bryan"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i504" id="aytac@abc.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i684" id="{9edd0ea8-2819-47c2-8320-b007d5996f8a}"> + <prefs> + <pref>browser.search.defaultenginename</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i69" id="{977f3b97-5461-4346-92c8-a14c749b77c9}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i444" id="fplayer@adobe.flash"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i550" id="colmer@yopmail.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i362" id="addon@defaulttab.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="1.4.4" severity="1"/> + </emItem> + <emItem blockID="i140" id="mozillahmpg@mozilla.org"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i503" id="{9CE11043-9A15-4207-A565-0C94C42D590D}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i16" id="{27182e60-b5f3-411c-b545-b44205977502}"> + <prefs/> + <versionRange minVersion="1.0" maxVersion="1.0" severity="1"/> + </emItem> + <emItem blockID="i549" id="/^firefox@(albrechto|swiftbrowse|springsmart|storimbo|squirrelweb|betterbrowse|lizardlink|rolimno|browsebeyond|clingclang|weblayers|kasimos|higher-aurum|xaven|bomlabio)\.(com?|net|org|info|biz)$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i1079" id="/^(@9338379C-DD5C-4A45-9A36-9733DC806FAE|9338379C-DD5C-4A45-9A36-9733DC806FAE|@EBC7B466-8A28-4061-81B5-10ACC05FFE53|@bd6a97c0-4b18-40ed-bce7-3b7d3309e3c4222|@bd6a97c0-4b18-40ed-bce7-3b7d3309e3c4|@b2d6a97c0-4b18-40ed-bce7-3b7d3309e3c4222)$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i622" id="/^({ebd898f8-fcf6-4694-bc3b-eabc7271eeb1}|{46008e0d-47ac-4daa-a02a-5eb69044431a}|{213c8ed6-1d78-4d8f-8729-25006aa86a76}|{fa23121f-ee7c-4bd8-8c06-123d087282c5}|{19803860-b306-423c-bbb5-f60a7d82cde5})$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i862" id="{CA8C84C6-3918-41b1-BE77-049B2BDD887C}"> + <prefs> + <pref>browser.startup.homepage</pref> + <pref>browser.search.defaultenginename</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i882" id="69ffxtbr@PackageTracer_69.com"> + <prefs> + <pref>browser.startup.homepage</pref> + <pref>browser.search.defaultenginename</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i706" id="thefoxonlybetter@quicksaver"> + <prefs/> + <versionRange minVersion="1.10" maxVersion="*" severity="3"/> + <versionRange minVersion="1.6.160" maxVersion="1.6.160" severity="3"/> + <versionRange minVersion="0" maxVersion="0.*" severity="3"/> + </emItem> + <emItem blockID="i1210" id="auto-plugin-checker@jetpack"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i497" id="{872b5b88-9db5-4310-bdd0-ac189557e5f5}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i1522" id="/^(ciscowebexstart1@cisco\.com|ciscowebexstart_test@cisco\.com|ciscowebexstart@cisco\.com|ciscowebexgpc@cisco\.com)$/"> + <prefs/> + <versionRange minVersion="1.0.0" maxVersion="1.0.1" severity="1"/> + </emItem> + <emItem blockID="i91" id="crossriderapp4926@crossrider.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="0.81.43" severity="1"/> + </emItem> + <emItem blockID="i376" id="{9e09ac65-43c0-4b9d-970f-11e2e9616c55}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i76" id="crossriderapp3924@crossrider.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i3" id="langpack-vi-VN@firefox.mozilla.org"> + <prefs/> + <versionRange minVersion="2.0" maxVersion="2.0" severity="1"/> + </emItem> + <emItem blockID="i870" id="M1uwW0@47z8gRpK8sULXXLivB.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i778" id="{f2456568-e603-43db-8838-ffa7c4a685c7}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i318" id="ffxtlbr@incredibar.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i1016" id="jid1-uabu5A9hduqzCw@jetpack"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i754" id="{bb7b7a60-f574-47c2-8a0b-4c56f2da9802}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i694" id="59D317DB041748fdB89B47E6F96058F3@jetpack"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i12" id="masterfiler@gmail.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i71" id="youtube@2youtube.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i447" id="{B18B1E5C-4D81-11E1-9C00-AFEB4824019B}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i1261" id="support@lastpass.com"> + <prefs/> + <versionRange minVersion="4.0.0a" maxVersion="4.1.20a" severity="1"/> + </emItem> + <emItem blockID="i509" id="contato@facefollow.net"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i394" id="{7D4F1959-3F72-49d5-8E59-F02F8AA6815D}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i810" id="{41339ee8-61ed-489d-b049-01e41fd5d7e0}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i15" id="personas@christopher.beard"> + <prefs/> + <versionRange minVersion="1.6" maxVersion="1.6" severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="3.6.*" minVersion="3.6"/> + </targetApplication> + </versionRange> + </emItem> + <emItem blockID="i618" id="toolbar@ask.com"> + <prefs/> + <versionRange minVersion="3.15.24" maxVersion="3.15.24.*" severity="1"/> + <versionRange minVersion="3.15.13" maxVersion="3.15.13.*" severity="1"/> + <versionRange minVersion="3.15.28" maxVersion="3.15.28.*" severity="1"/> + <versionRange minVersion="3.15.22" maxVersion="3.15.22.*" severity="1"/> + <versionRange minVersion="3.15.8" maxVersion="3.15.8.*" severity="1"/> + <versionRange minVersion="3.15.10" maxVersion="3.15.11.*" severity="1"/> + <versionRange minVersion="3.15.18" maxVersion="3.15.20.*" severity="1"/> + <versionRange minVersion="3.15.5" maxVersion="3.15.5.*" severity="1"/> + <versionRange minVersion="3.15.31" maxVersion="3.15.31.*" severity="1"/> + <versionRange minVersion="3.15.26" maxVersion="3.15.26.*" severity="1"/> + </emItem> + <emItem blockID="i529" id="/^(torntv@torntv\.com|trtv3@trtv\.com|torntv2@torntv\.com|e2fd07a6-e282-4f2e-8965-85565fcb6384@b69158e6-3c3b-476c-9d98-ae5838c5b707\.com)$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i486" id="xz123@ya456.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i784" id="{41e5ef7a-171d-4ab5-8351-951c65a29908}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i57" id="youtube@youtube3.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i424" id="{C7AE725D-FA5C-4027-BB4C-787EF9F8248A}"> + <prefs/> + <versionRange minVersion="0" maxVersion="1.0.0.2" severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="23.0a1"/> + </targetApplication> + </versionRange> + </emItem> + <emItem blockID="i104" id="yasd@youasdr3.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i498" id="hoverst@facebook.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i54" id="applebeegifts@mozilla.doslash.org"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i482" id="brasilescapeeight@facebook.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1136" id="/^({1f43c8af-e9e4-4e5a-b77a-f51c7a916324}|{3a3bd700-322e-440a-8a6a-37243d5c7f92}|{6a5b9fc2-733a-4964-a96a-958dd3f3878e}|{7b5d6334-8bc7-4bca-a13e-ff218d5a3f17}|{b87bca5b-2b5d-4ae8-ad53-997aa2e238d4}|{bf8e032b-150f-4656-8f2d-6b5c4a646e0d})$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i312" id="extension21804@extension21804.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i552" id="jid0-O6MIff3eO5dIGf5Tcv8RsJDKxrs@jetpack"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i479" id="mbrsepone@facebook.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i744" id="{84a93d51-b7a9-431e-8ff8-d60e5d7f5df1}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i736" id="{c5e48979-bd7f-4cf7-9b73-2482a67a4f37}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i406" id="{bf7380fa-e3b4-4db2-af3e-9d8783a45bfc}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i437" id="{4933189D-C7F7-4C6E-834B-A29F087BFD23}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i222" id="dealcabby@jetpack"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i100" id="{394DCBA4-1F92-4f8e-8EC9-8D2CB90CB69B}"> + <prefs/> + <versionRange minVersion="2.5.0" maxVersion="2.5.0" severity="1"/> + </emItem> + <emItem blockID="i590" id="{94cd2cc3-083f-49ba-a218-4cda4b4829fd}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i1232" id="nosquint@urandom.ca"> + <prefs/> + <versionRange minVersion="0" maxVersion="2.1.9.1-signed.1-signed" severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="47"/> + </targetApplication> + </versionRange> + </emItem> + <emItem blockID="i748" id="{32da2f20-827d-40aa-a3b4-2fc4a294352e}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i544" id="/^(93abedcf-8e3a-4d02-b761-d1441e437c09@243f129d-aee2-42c2-bcd1-48858e1c22fd\.com|9acfc440-ac2d-417a-a64c-f6f14653b712@09f9a966-9258-4b12-af32-da29bdcc28c5\.com|58ad0086-1cfb-48bb-8ad2-33a8905572bc@5715d2be-69b9-4930-8f7e-64bdeb961cfd\.com)$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i650" id="jid1-qj0w91o64N7Eeg@jetpack"> + <prefs/> + <versionRange minVersion="39.5.1" maxVersion="47.0.4" severity="3"/> + </emItem> + <emItem blockID="i640" id="jid0-l9BxpNUhx1UUgRfKigWzSfrZqAc@jetpack"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i628" id="ffxtlbr@iminent.com"> + <prefs> + <pref>browser.startup.homepage</pref> + <pref>browser.search.defaultenginename</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i1042" id="gjhrjenrengoe@jfdnkwelfwkm.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1228" id="unblocker30__web@unblocker.yt"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i918" id="{C3949AC2-4B17-43ee-B4F1-D26B9D42404D}" os="WINNT"> + <prefs/> + <versionRange minVersion="0" maxVersion="15.0.5" severity="1"/> + <versionRange minVersion="0" maxVersion="*" severity="3"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="39.0a1"/> + </targetApplication> + </versionRange> + </emItem> + <emItem blockID="i648" id="firefoxaddon@youtubeenhancer.com"> + <prefs/> + <versionRange minVersion="208.7.0" maxVersion="208.7.0" severity="3"/> + <versionRange minVersion="199.7.0" maxVersion="199.7.0" severity="3"/> + <versionRange minVersion="199.7.0" maxVersion="208.7.0" severity="3"/> + </emItem> + <emItem blockID="i762" id="/^({2d7886a0-85bb-4bf2-b684-ba92b4b21d23}|{2fab2e94-d6f9-42de-8839-3510cef6424b}|{c02397f7-75b0-446e-a8fa-6ef70cfbf12b}|{8b337819-d1e8-48d3-8178-168ae8c99c36}|firefox@neurowise.info|firefox@allgenius.info)$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i568" id="thunder@xunlei.com" os="Darwin"> + <prefs/> + <versionRange minVersion="0" maxVersion="2.0.6" severity="1"/> + </emItem> + <emItem blockID="i768" id="{f2548724-373f-45fe-be6a-3a85e87b7711}"> + <prefs> + <pref>browser.startup.homepage</pref> + <pref>browser.search.defaultenginename</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i772" id="{72b98dbc-939a-4e0e-b5a9-9fdbf75963ef}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i996" id="9598582LLKmjasieijkaslesae@jetpack"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i586" id="jid1-0xtMKhXFEs4jIg@jetpack"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i546" id="firefox@browsefox.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i438" id="{02edb56b-9b33-435b-b7df-b2843273a694}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i358" id="lfind@nijadsoft.net"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i67" id="youtube2@youtube2.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i88" id="anttoolbar@ant.com"> + <prefs/> + <versionRange minVersion="2.4.6.4" maxVersion="2.4.6.4" severity="1"/> + </emItem> + <emItem blockID="i786" id="{63eb5ed4-e1b3-47ec-a253-f8462f205350}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i115" id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i510" id="{3c9a72a0-b849-40f3-8c84-219109c27554}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1229" id="/^(.*@(unblocker\.yt|sparpilot\.com))|(axtara@axtara\.com)$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i530" id="{739df940-c5ee-4bab-9d7e-270894ae687a}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i431" id="chinaescapeone@facebook.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i804" id="{ad7ce998-a77b-4062-9ffb-1d0b7cb23183}"> + <prefs> + <pref>browser.startup.homepage</pref> + <pref>browser.search.defaultenginename</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i168" id="flashX@adobe.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i535" id="/^ext@WebexpEnhancedV1alpha[0-9]+\.net$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i404" id="{a9bb9fa0-4122-4c75-bd9a-bc27db3f9155}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i730" id="25p@9eAkaLq.net"> + <prefs> + <pref>browser.startup.homepage</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i1227" id="{A34CAF42-A3E3-11E5-945F-18C31D5D46B0}"> + <prefs> + <pref>security.csp.enable</pref> + <pref>security.fileuri.strict_origin_policy</pref> + <pref>security.mixed_content.block_active_content</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i400" id="{dd6b651f-dfb9-4142-b0bd-09912ad22674}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i11" id="yslow@yahoo-inc.com"> + <prefs/> + <versionRange minVersion="2.0.5" maxVersion="2.0.5" severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="3.5.7"/> + </targetApplication> + </versionRange> + </emItem> + <emItem blockID="i433" id="{c95a4e8e-816d-4655-8c79-d736da1adb6d}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i584" id="{52b0f3db-f988-4788-b9dc-861d016f4487}"> + <prefs/> + <versionRange minVersion="0" maxVersion="0.1.9999999" severity="1"/> + </emItem> + <emItem blockID="i466" id="afext@anchorfree.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i19" id="{46551EC9-40F0-4e47-8E18-8E5CF550CFB8}"> + <prefs/> + <versionRange minVersion="1.1b1" maxVersion="1.1b1" severity="1"/> + </emItem> + <emItem blockID="i982" id="odtffplugin@ibm.com"> + <prefs/> + <versionRange minVersion="9.0.1.1" maxVersion="9.0.1.100" severity="1"/> + </emItem> + <emItem blockID="i1036" id="HxLVJK1ioigz9WEWo8QgCs3evE7uW6LEExAniBGG@jetpack"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i580" id="{51c77233-c0ad-4220-8388-47c11c18b355}"> + <prefs/> + <versionRange minVersion="0" maxVersion="0.1.9999999" severity="1"/> + </emItem> + <emItem blockID="i726" id="{d87d56b2-1379-49f4-b081-af2850c79d8e}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1128" id="youtubeunblocker@unblocker.yt"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1038" id="344141-fasf9jas08hasoiesj9ia8ws@jetpack"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="89a61123-79a2-45d1-aec2-97afca0863eb" id="InternetProtection@360safe.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="5.0.0.1002" severity="3"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="52.0a1"/> + </targetApplication> + </versionRange> + </emItem> + <emItem blockID="i471" id="firefox@luckyleap.net"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i560" id="adsremoval@adsremoval.net"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i396" id="/@(ft|putlocker|clickmovie|m2k|sharerepo|smarter-?)downloader\.com$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i968" id="{184AA5E6-741D-464a-820E-94B3ABC2F3B4}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i538" id="{354dbb0a-71d5-4e9f-9c02-6c88b9d387ba}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i792" id="{8f894ed3-0bf2-498e-a103-27ef6e88899f}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i742" id="{f894a29a-f065-40c3-bb19-da6057778493}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i658" id="low_quality_flash@pie2k.com"> + <prefs/> + <versionRange minVersion="46.2" maxVersion="47.1" severity="3"/> + </emItem> + <emItem blockID="i17" id="{3252b9ae-c69a-4eaf-9502-dc9c1f6c009e}"> + <prefs/> + <versionRange minVersion="2.2" maxVersion="2.2" severity="1"/> + </emItem> + <emItem blockID="i109" id="{392e123b-b691-4a5e-b52f-c4c1027e749c}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i814" id="liiros@facebook.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i167" id="{b64982b1-d112-42b5-b1e4-d3867c4533f8}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i172" id="info@bflix.info"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i352" id="vpyekkifgv@vpyekkifgv.org"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1278" id="/^(ff\-)?dodate(kKKK|XkKKK|k|kk|kkx|kR)@(firefox|flash(1)?)\.pl|dode(ee)?k@firefoxnet\.pl|(addon|1)@upsolutions\.pl$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i256" id="/^[0-9a-f]+@[0-9a-f]+\.info/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i980" id="wHO@W9.net"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i127" id="plugin@youtubeplayer.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i340" id="chiang@programmer.net"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i740" id="ascsurfingprotection@iobit.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i554" id="lightningnewtab@gmail.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i380" id="{cc8f597b-0765-404e-a575-82aefbd81daf}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i432" id="lugcla21@gmail.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i392" id="{EEE6C361-6118-11DC-9C72-001320C79847}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i429" id="{B40794A0-7477-4335-95C5-8CB9BBC5C4A5}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i724" id="{1cdbda58-45f8-4d91-b566-8edce18f8d0a}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i638" id="{7b1bf0b6-a1b9-42b0-b75d-252036438bdc}"> + <prefs/> + <versionRange minVersion="27.8" maxVersion="27.9" severity="3"/> + </emItem> + <emItem blockID="i533" id="extension@Fast_Free_Converter.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i38" id="{B7082FAA-CB62-4872-9106-E42DD88EDE45}"> + <prefs/> + <versionRange minVersion="3.3.1" maxVersion="*" severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="5.0a1"/> + </targetApplication> + </versionRange> + <versionRange minVersion="0.1" maxVersion="3.3.0.*" severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="3.7a1"/> + </targetApplication> + </versionRange> + </emItem> + <emItem blockID="i746" id="{58d2a791-6199-482f-a9aa-9b725ec61362}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i20" id="{AB2CE124-6272-4b12-94A9-7303C7397BD1}"> + <prefs/> + <versionRange minVersion="0.1" maxVersion="5.2.0.7164" severity="1"/> + </emItem> + <emItem blockID="i686" id="{a7f2cb14-0472-42a1-915a-8adca2280a2c}"> + <prefs> + <pref>browser.startup.homepage</pref> + <pref>browser.search.defaultenginename</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="04b25e3d-a725-493e-be07-cbd74fb37ea7" id="{95E84BD3-3604-4AAC-B2CA-D9AC3E55B64B}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1279" id="dodatek@flash2.pl"> + <prefs/> + <versionRange minVersion="1.3" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i998" id="meOYKQEbBBjH5Ml91z0p9Aosgus8P55bjTa4KPfl@jetpack"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i434" id="afurladvisor@anchorfree.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i306" id="{ADFA33FD-16F5-4355-8504-DF4D664CFE10}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i83" id="flash@adobee.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i670" id="/^({ad9a41d2-9a49-4fa6-a79e-71a0785364c8})|(ffxtlbr@mysearchdial\.com)$/"> + <prefs> + <pref>browser.search.defaultenginename</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i774" id="x77IjS@xU.net"> + <prefs> + <pref>browser.startup.homepage</pref> + <pref>browser.search.defaultenginename</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i718" id="G4Ce4@w.net"> + <prefs> + <pref>browser.startup.homepage</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i21" id="support@update-firefox.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i476" id="mbroctone@facebook.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i491" id="{515b2424-5911-40bd-8a2c-bdb20286d8f5}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i532" id="249911bc-d1bd-4d66-8c17-df533609e6d8@c76f3de9-939e-4922-b73c-5d7a3139375d.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i65" id="activity@facebook.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1223" id="tmbepff@trendmicro.com"> + <prefs/> + <versionRange minVersion="9.2" maxVersion="9.2.0.1023" severity="1"/> + <versionRange minVersion="0" maxVersion="9.1.0.1035" severity="1"/> + </emItem> + <emItem blockID="i478" id="{7e8a1050-cf67-4575-92df-dcc60e7d952d}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i370" id="happylyrics@hpyproductions.net"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i924" id="{DAC3F861-B30D-40dd-9166-F4E75327FAC7}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="39.0a1"/> + </targetApplication> + </versionRange> + </emItem> + <emItem blockID="i7" id="{2224e955-00e9-4613-a844-ce69fccaae91}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i505" id="extacylife@a.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i886" id="searchengine@gmail.com"> + <prefs> + <pref>browser.startup.homepage</pref> + <pref>browser.search.defaultenginename</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i528" id="008abed2-b43a-46c9-9a5b-a771c87b82da@1ad61d53-2bdc-4484-a26b-b888ecae1906.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i1414" id="/^new@kuot\.pro|{13ec6687-0b15-4f01-a5a0-7a891c18e4ee}|rebeccahoppkins(ty(tr)?)?@gmail\.com|{501815af-725e-45be-b0f2-8f36f5617afc}|{9bdb5f1f-b1e1-4a75-be31-bdcaace20a99}|{e9d93e1d-792f-4f95-b738-7adb0e853b7b}|dojadewaskurwa@gmail\.com$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1493" id="{de71f09a-3342-48c5-95c1-4b0f17567554}"> + <prefs/> + <versionRange minVersion="0" maxVersion="1.3.9" severity="3"/> + </emItem> + <emItem blockID="i712" id="{a2bfe612-4cf5-48ea-907c-f3fb25bc9d6b}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i652" id="garg_sms@yahoo.in"> + <prefs/> + <versionRange minVersion="67.9" maxVersion="67.9" severity="3"/> + </emItem> + <emItem blockID="i47" id="youtube@youtube2.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i453" id="/^brasilescape.*\@facebook\.com$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i816" id="noOpus@outlook.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i485" id="/^brasilescape.*\@facebook\.com$//"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1262" id="my7thfakeid@gmail.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i86" id="{45147e67-4020-47e2-8f7a-55464fb535aa}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i598" id="{29b136c9-938d-4d3d-8df8-d649d9b74d02}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i402" id="{99079a25-328f-4bd4-be04-00955acaa0a7}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i451" id="{e44a1809-4d10-4ab8-b343-3326b64c7cdd}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i108" id="{28bfb930-7620-11e1-b0c4-0800200c9a66}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1056" id="{82AF8DCA-6DE9-405D-BD5E-43525BDAD38A}"> + <prefs/> + <versionRange minVersion="0" maxVersion="7.5.0.9082" severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="43.0a1"/> + </targetApplication> + </versionRange> + </emItem> + <emItem blockID="i350" id="sqlmoz@facebook.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i446" id="{E90FA778-C2B7-41D0-9FA9-3FEC1CA54D66}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i13" id="{E8E88AB0-7182-11DF-904E-6045E0D72085}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i226" id="{462be121-2b54-4218-bf00-b9bf8135b23f}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i117" id="{ce7e73df-6a44-4028-8079-5927a588c948}"> + <prefs/> + <versionRange minVersion="0" maxVersion="1.0.8" severity="1"/> + </emItem> + <emItem blockID="i44" id="sigma@labs.mozilla"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i258" id="helperbar@helperbar.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="1.0" severity="1"/> + </emItem> + <emItem blockID="i96" id="youtubeee@youtuber3.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i564" id="/^(firefox@vebergreat\.net|EFGLQA@78ETGYN-0W7FN789T87\.COM)$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i500" id="{2aab351c-ad56-444c-b935-38bffe18ad26}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i97" id="support3_en@adobe122.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i439" id="{d2cf9842-af95-48cd-b873-bfbb48cd7f5e}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i576" id="newmoz@facebook.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i46" id="{841468a1-d7f4-4bd3-84e6-bb0f13a06c64}"> + <prefs/> + <versionRange minVersion="0.1" maxVersion="*" severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="9.0" minVersion="9.0a1"/> + </targetApplication> + </versionRange> + </emItem> + <emItem blockID="i776" id="g@uzcERQ6ko.net"> + <prefs> + <pref>browser.startup.homepage</pref> + <pref>browser.search.defaultenginename</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i494" id="/^({e9df9360-97f8-4690-afe6-996c80790da4}|{687578b9-7132-4a7a-80e4-30ee31099e03}|{46a3135d-3683-48cf-b94c-82655cbc0e8a}|{49c795c2-604a-4d18-aeb1-b3eba27e5ea2}|{7473b6bd-4691-4744-a82b-7854eb3d70b6}|{96f454ea-9d38-474f-b504-56193e00c1a5})$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i668" id="/^(matchersite(pro(srcs?)?)?\@matchersite(pro(srcs?)?)?\.com)|((pro)?sitematcher(_srcs?|pro|site|sitesrc|-generic)?\@(pro)?sitematcher(_srcs?|pro|site|sitesrc|-generic)?\.com)$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i174" id="info@thebflix.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i822" id="{6af08a71-380e-42dd-9312-0111d2bc0630}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i888" id="istart_ffnt@gmail.com"> + <prefs> + <pref>browser.startup.homepage</pref> + <pref>browser.search.defaultenginename</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i972" id="831778-poidjao88DASfsAnindsd@jetpack"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i846" id="PDVDZDW52397720@XDDWJXW57740856.com"> + <prefs> + <pref>browser.startup.homepage</pref> + <pref>browser.search.defaultenginename</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i844" id="e9d197d59f2f45f382b1aa5c14d82@8706aaed9b904554b5cb7984e9.com"> + <prefs> + <pref>browser.startup.homepage</pref> + <pref>browser.search.defaultenginename</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i216" id="fdm_ffext@freedownloadmanager.org"> + <prefs/> + <versionRange minVersion="1.0" maxVersion="1.3.1" severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="3.0a1"/> + </targetApplication> + </versionRange> + <versionRange minVersion="1.5.7.5" maxVersion="1.5.7.5" severity="1"/> + </emItem> + <emItem blockID="i515" id="/^({bf9194c2-b86d-4ebc-9b53-1c08b6ff779e}|{61a83e16-7198-49c6-8874-3e4e8faeb4f3}|{f0af464e-5167-45cf-9cf0-66b396d1918c}|{5d9968c3-101c-4944-ba71-72d77393322d}|{01e86e69-a2f8-48a0-b068-83869bdba3d0})$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i596" id="{b99c8534-7800-48fa-bd71-519a46cdc7e1}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i461" id="{8E9E3331-D360-4f87-8803-52DE43566502}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i818" id="contentarget@maildrop.cc"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1211" id="flvto@hotger.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i23" id="firefox@bandoo.com"> + <prefs/> + <versionRange minVersion="5.0" maxVersion="5.0" severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="3.7a1pre"/> + </targetApplication> + </versionRange> + </emItem> + <emItem blockID="i714" id="{25dd52dc-89a8-469d-9e8f-8d483095d1e8}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i59" id="ghostviewer@youtube2.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i708" id="{849ded12-59e9-4dae-8f86-918b70d213dc}"> + <prefs> + <pref>browser.startup.homepage</pref> + <pref>browser.search.defaultenginename</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i448" id="{0134af61-7a0c-4649-aeca-90d776060cb3}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i78" id="socialnetworktools@mozilla.doslash.org"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i526" id="/^({83a8ce1b-683c-4784-b86d-9eb601b59f38}|{ef1feedd-d8da-4930-96f1-0a1a598375c6}|{79ff1aae-701f-4ca5-aea3-74b3eac6f01b}|{8a184644-a171-4b05-bc9a-28d75ffc9505}|{bc09c55d-0375-4dcc-836e-0e3c8addfbda}|{cef81415-2059-4dd5-9829-1aef3cf27f4f})$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i92" id="play5@vide04flash.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i45" id="{22119944-ED35-4ab1-910B-E619EA06A115}"> + <prefs/> + <versionRange minVersion="0.1" maxVersion="7.9.20.6" severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="8.0a1"/> + </targetApplication> + </versionRange> + </emItem> + <emItem blockID="i220" id="pricepeep@getpricepeep.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="2.1.0.19.99" severity="1"/> + </emItem> + <emItem blockID="i518" id="/^({d6e79525-4524-4707-9b97-1d70df8e7e59}|{ddb4644d-1a37-4e6d-8b6e-8e35e2a8ea6c}|{e55007f4-80c5-418e-ac33-10c4d60db01e}|{e77d8ca6-3a60-4ae9-8461-53b22fa3125b}|{e89a62b7-248e-492f-9715-43bf8c507a2f}|{5ce3e0cb-aa83-45cb-a7da-a2684f05b8f3})$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i770" id="{8dc5c42e-9204-2a64-8b97-fa94ff8a241f}"> + <prefs> + <pref>browser.startup.homepage</pref> + <pref>browser.search.defaultenginename</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1000" id="jufa098j-LKooapd9jasJ9jliJsd@jetpack"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i308" id="9518042e-7ad6-4dac-b377-056e28d00c8f@f1cc0a13-4df1-4d66-938f-088db8838882.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i435" id="pluggets@gmail.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i696" id="/^({fa95f577-07cb-4470-ac90-e843f5f83c52}|ffxtlbr@speedial\.com)$/"> + <prefs> + <pref>browser.startup.homepage</pref> + <pref>browser.search.defaultenginename</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i1212" id="unblocker20@unblocker.yt"> + <prefs/> + <versionRange minVersion="0" maxVersion="2.0.0" severity="3"/> + </emItem> + <emItem blockID="i354" id="{c0c2693d-2ee8-47b4-9df7-b67a0ee31988}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i84" id="pink@rosaplugin.info"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i364" id="{FE1DEEEA-DB6D-44b8-83F0-34FC0F9D1052}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i547" id="{87934c42-161d-45bc-8cef-ef18abe2a30c}"> + <prefs/> + <versionRange minVersion="0" maxVersion="3.7.9999999999" severity="1"/> + </emItem> + <emItem blockID="i356" id="{341f4dac-1966-47ff-aacf-0ce175f1498a}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i536" id="{25D77636-38B1-1260-887C-2D4AFA92D6A4}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i374" id="update@firefox.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i336" id="CortonExt@ext.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i452" id="{77beece6-3997-403a-92fa-0055bfcf88e5}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i858" id="fftoolbar2014@etech.com"> + <prefs> + <pref>browser.startup.homepage</pref> + <pref>browser.search.defaultenginename</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i1523" id="{a0d7ccb3-214d-498b-b4aa-0e8fda9a7bf7}"> + <prefs/> + <versionRange minVersion="0" maxVersion="20170120" severity="1"/> + </emItem> + <emItem blockID="i1018" id="grjkntbhr@hgergerherg.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i850" id="P2@D.edu"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i541" id="/^({988919ff-0cd8-4d0c-bc7e-60d55a49eb64}|{494b9726-9084-415c-a499-68c07e187244}|{55b95864-3251-45e9-bb30-1a82589aaff1}|{eef3855c-fc2d-41e6-8d91-d368f51b3055}|{90a1b331-c2b4-4933-9f63-ba7b84d60d58}|{d2cf9842-af95-48cd-b873-bfbb48cd7f5e})$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i324" id="/^((34qEOefiyYtRJT@IM5Munavn\.com)|(Mro5Fm1Qgrmq7B@ByrE69VQfZvZdeg\.com)|(KtoY3KGxrCe5ie@yITPUzbBtsHWeCdPmGe\.com)|(9NgIdLK5Dq4ZMwmRo6zk@FNt2GCCLGyUuOD\.com)|(NNux7bWWW@RBWyXdnl6VGls3WAwi\.com)|(E3wI2n@PEHTuuNVu\.com)|(2d3VuWrG6JHBXbQdbr@3BmSnQL\.com))$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i620" id="{21EAF666-26B3-4A3C-ABD0-CA2F5A326744}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i70" id="psid-vhvxQHMZBOzUZA@jetpack"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i790" id="JMLv@njMaHh.org"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1425" id="/^(pdftoword@addingapps.com|jid0-EYTXLS0GyfQME5irGbnD4HksnbQ@jetpack|jid1-ZjJ7t75BAcbGCX@jetpack)$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i674" id="crossriderapp12555@crossrider.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i1034" id="a88a77ahjjfjakckmmabsy278djasi@jetpack"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i562" id="iobitapps@mybrowserbar.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i430" id="1chtw@facebook.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i970" id="hha8771ui3-Fo9j9h7aH98jsdfa8sda@jetpack"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i916" id="{97E22097-9A2F-45b1-8DAF-36AD648C7EF4}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="39.0a1"/> + </targetApplication> + </versionRange> + </emItem> + <emItem blockID="i338" id="{1FD91A9C-410C-4090-BBCC-55D3450EF433}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i344" id="lrcsTube@hansanddeta.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="0f8344d0-8211-49a1-81be-c0084b3da9b1" id="fr@fbt.ovh"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i79" id="GifBlock@facebook.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i483" id="brasilescapefive@facebook.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i469" id="OKitSpace@OKitSpace.es"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i780" id="{b6ef1336-69bb-45b6-8cba-e578fc0e4433}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1058" id="amo-validator-bypass@example.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i48" id="admin@youtubespeedup.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i766" id="/^[a-z0-9]+@foxysecure[a-z0-9]*\.com$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i566" id="{77BEC163-D389-42c1-91A4-C758846296A5}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="9085fdba-8498-46a9-b9fd-4c7343a15c62" id="/^(test2@test\.com)|(test3@test\.com)|(mozilla_cc2\.2@internetdownloadmanager\.com)$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="53.0a1"/> + </targetApplication> + </versionRange> + </emItem> + <emItem blockID="c142360c-4f93-467e-9717-b638aa085d95" id="/^(\{11112503-5e91-4299-bf4b-f8c07811aa50\})|(\{501815af-725e-45be-b0f2-8f36f5617afc\})$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i525" id="/^({65f9f6b7-2dae-46fc-bfaf-f88e4af1beca}|{9ed31f84-c8b3-4926-b950-dff74047ff79}|{0134af61-7a0c-4649-aeca-90d776060cb3}|{02edb56b-9b33-435b-b7df-b2843273a694}|{da51d4f6-3e7e-4ef8-b400-9198e0874606}|{b24577db-155e-4077-bb37-3fdd3c302bb5})$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i43" id="supportaccessplugin@gmail.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i660" id="youplayer@addons.mozilla.org"> + <prefs/> + <versionRange minVersion="79.9.8" maxVersion="208.0.1" severity="3"/> + </emItem> + <emItem blockID="i646" id="{e1aaa9f8-4500-47f1-9a0a-b02bd60e4076}"> + <prefs/> + <versionRange minVersion="178.7.0" maxVersion="178.7.0" severity="3"/> + </emItem> + <emItem blockID="i304" id="{f0e59437-6148-4a98-b0a6-60d557ef57f4}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i467" id="plugin@analytic-s.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i58" id="webmaster@buzzzzvideos.info"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i5" id="support@daemon-tools.cc"> + <prefs/> + <versionRange minVersion="0" maxVersion="1.0.0.5" severity="1"/> + </emItem> + <emItem blockID="i545" id="superlrcs@svenyor.net"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i378" id="{a7aae4f0-bc2e-a0dd-fb8d-68ce32c9261f}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i449" id="gystqfr@ylgga.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i163" id="info@allpremiumplay.info"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i994" id="addonhack@mozilla.kewis.ch"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i588" id="quick_start@gmail.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i40" id="{28387537-e3f9-4ed7-860c-11e69af4a8a0}"> + <prefs/> + <versionRange minVersion="0.1" maxVersion="4.3.1.00" severity="1"/> + </emItem> + <emItem blockID="i426" id="addlyrics@addlyrics.net"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i752" id="savingsslider@mybrowserbar.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i77" id="{fa277cfc-1d75-4949-a1f9-4ac8e41b2dfd}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i64" id="royal@facebook.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i728" id="l@AdLJ7uz.net"> + <prefs> + <pref>browser.startup.homepage</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i468" id="05dd836e-2cbd-4204-9ff3-2f8a8665967d@a8876730-fb0c-4057-a2fc-f9c09d438e81.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i60" id="youtb3@youtb3.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i82" id="{8f42fb8b-b6f6-45de-81c0-d6d39f54f971}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i642" id="{bee6eb20-01e0-ebd1-da83-080329fb9a3a}"> + <prefs/> + <versionRange minVersion="40.10.1" maxVersion="44.10.1" severity="3"/> + </emItem> + <emItem blockID="i514" id="/^(67314b39-24e6-4f05-99f3-3f88c7cddd17@6c5fa560-13a3-4d42-8e90-53d9930111f9\.com|ffxtlbr@visualbee\.com|{7aeae561-714b-45f6-ace3-4a8aed6e227b}|{7093ee04-f2e4-4637-a667-0f730797b3a0}|{53c4024f-5a2e-4f2a-b33e-e8784d730938})$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i531" id="/^(4cb61367-efbf-4aa1-8e3a-7f776c9d5763@cdece6e9-b2ef-40a9-b178-291da9870c59\.com|0efc9c38-1ec7-49ed-8915-53a48b6b7600@e7f17679-2a42-4659-83c5-7ba961fdf75a\.com|6be3335b-ef79-4b0b-a0ba-b87afbc6f4ad@6bbb4d2e-e33e-4fa5-9b37-934f4fb50182\.com)$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i1423" id="/^(@pluginscribens_firefox|extension@vidscrab.com|firefox@jjj.ee|firefox@shop-reward.de|FxExtPasteNGoHtk@github.lostdj|himanshudotrai@gmail.com|jid0-bigoD0uivzAMmt07zrf3OHqa418@jetpack|jid0-iXbAR01tjT2BsbApyS6XWnjDhy8@jetpack)$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i68" id="flashupdate@adobe.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i492" id="{af95cc15-3b9b-45ae-8d9b-98d08eda3111}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i488" id="jid1-4P0kohSJxU1qGg@jetpack"> + <prefs/> + <versionRange minVersion="1.2.50" maxVersion="1.2.50" severity="1"/> + </emItem> + <emItem blockID="i314" id="crossriderapp8812@crossrider.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i262" id="{167d9323-f7cc-48f5-948a-6f012831a69f}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="08addad8-2f03-4cff-a791-e6f2a1b170ed" id="WebProtection@360safe.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="52.0a1"/> + </targetApplication> + </versionRange> + </emItem> + <emItem blockID="i838" id="{87b5a11e-3b54-42d2-9102-0a7cb1f79ebf}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i678" id="{C4A4F5A0-4B89-4392-AFAC-D58010E349AF}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i570" id="jid1-vW9nopuIAJiRHw@jetpack"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i14" id="mozilla_cc@internetdownloadmanager.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="6.9.8" severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="3.7a1pre"/> + </targetApplication> + </versionRange> + </emItem> + <emItem blockID="i326" id="/^((support2_en@adobe14\.com)|(XN4Xgjw7n4@yUWgc\.com)|(C7yFVpIP@WeolS3acxgS\.com)|(Kbeu4h0z@yNb7QAz7jrYKiiTQ3\.com)|(aWQzX@a6z4gWdPu8FF\.com)|(CBSoqAJLYpCbjTP90@JoV0VMywCjsm75Y0toAd\.com)|(zZ2jWZ1H22Jb5NdELHS@o0jQVWZkY1gx1\.com))$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i39" id="{c2d64ff7-0ab8-4263-89c9-ea3b0f8f050c}"> + <prefs/> + <versionRange minVersion="0.1" maxVersion="4.3.1.00" severity="1"/> + </emItem> + <emItem blockID="i852" id="6lIy@T.edu"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i856" id="/^({94d62e35-4b43-494c-bf52-ba5935df36ef}|firefox@advanceelite\.com|{bb7b7a60-f574-47c2-8a0b-4c56f2da9802})$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i520" id="/^({7316e43a-3ebd-4bb4-95c1-9caf6756c97f}|{0cc09160-108c-4759-bab1-5c12c216e005}|{ef03e721-f564-4333-a331-d4062cee6f2b}|{465fcfbb-47a4-4866-a5d5-d12f9a77da00}|{7557724b-30a9-42a4-98eb-77fcb0fd1be3}|{b7c7d4b0-7a84-4b73-a7ef-48ef59a52c3b})$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i465" id="trtv3@trtv.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i8" id="{B13721C7-F507-4982-B2E5-502A71474FED}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i662" id="imbaty@taringamp3.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i854" id="/^(7tG@zEb\.net|ru@gfK0J\.edu)$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i73" id="a1g0a9g219d@a1.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1126" id="{bbea93c6-64a3-4a5a-854a-9cc61c8d309e}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i516" id="/^({3f3cddf8-f74d-430c-bd19-d2c9147aed3d}|{515b2424-5911-40bd-8a2c-bdb20286d8f5}|{17464f93-137e-4646-a0c6-0dc13faf0113}|{d1b5aad5-d1ae-4b20-88b1-feeaeb4c1ebc}|{aad50c91-b136-49d9-8b30-0e8d3ead63d0})$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i51" id="admin@youtubeplayer.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i246" id="support@vide1flash2.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i372" id="5nc3QHFgcb@r06Ws9gvNNVRfH.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i680" id="jid1-bKSXgRwy1UQeRA@jetpack"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i802" id="{18d5a8fe-5428-485b-968f-b97b05a92b54}"> + <prefs> + <pref>browser.startup.homepage</pref> + <pref>browser.search.defaultenginename</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i710" id="{e0352044-1439-48ba-99b6-b05ed1a4d2de}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i506" id="/^ext@bettersurfplus/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i864" id="{0A92F062-6AC6-8180-5881-B6E0C0DC2CC5}"> + <prefs> + <pref>browser.startup.homepage</pref> + <pref>browser.search.defaultenginename</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i672" id="/^(saamazon@mybrowserbar\.com)|(saebay@mybrowserbar\.com)$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i634" id="jid1-4vUehhSALFNqCw@jetpack"> + <prefs/> + <versionRange minVersion="99.7" maxVersion="99.7" severity="3"/> + <versionRange minVersion="100.7" maxVersion="100.7" severity="3"/> + </emItem> + <emItem blockID="i162" id="{EB7508CA-C7B2-46E0-8C04-3E94A035BD49}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i62" id="jid0-EcdqvFOgWLKHNJPuqAnawlykCGZ@jetpack"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i103" id="kdrgun@gmail.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1119" id="/^(test3@test.org|test2@test.org|test@test.org|support@mozilla.org)$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1424" id="/^(jid0-S9kkzfTvEmC985BVmf8ZOzA5nLM@jetpack|jid1-qps14pkDB6UDvA@jetpack|jid1-Tsr09YnAqIWL0Q@jetpack|shole@ats.ext|{38a64ef0-7181-11e3-981f-0800200c9a66}|eochoa@ualberta.ca)$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i519" id="703db0db-5fe9-44b6-9f53-c6a91a0ad5bd@7314bc82-969e-4d2a-921b-e5edd0b02cf1.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i484" id="plugin@getwebcake.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i477" id="mbrnovone@facebook.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1524" id="ext@alibonus.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="1.20.9" severity="1"/> + </emItem> + <emItem blockID="i836" id="hansin@topvest.id"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i495" id="kallow@facebook.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i286" id="{58bd07eb-0ee0-4df0-8121-dc9b693373df}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i542" id="/^({bf67a47c-ea97-4caf-a5e3-feeba5331231}|{24a0cfe1-f479-4b19-b627-a96bf1ea3a56})$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i676" id="SpecialSavings@SpecialSavings.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i52" id="ff-ext@youtube"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i540" id="/^(ffxtlbr@mixidj\.com|{c0c2693d-2ee8-47b4-9df7-b67a0ee31988}|{67097627-fd8e-4f6b-af4b-ecb65e50112e}|{f6f0f973-a4a3-48cf-9a7a-b7a69c30d71a}|{a3d0e35f-f1da-4ccb-ae77-e9d27777e68d}|{1122b43d-30ee-403f-9bfa-3cc99b0caddd})$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i720" id="FXqG@xeeR.net"> + <prefs> + <pref>browser.startup.homepage</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="d33f6d48-a555-49dd-96ff-8d75473403a8" id="mozilla_cc2@internetdownloadmanager.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="6.26.11" severity="3"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="53.0a1"/> + </targetApplication> + </versionRange> + </emItem> + <emItem blockID="i493" id="12x3q@3244516.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1265" id="@video_downloader_pro"> + <prefs/> + <versionRange minVersion="1.2.1" maxVersion="1.2.5" severity="1"/> + </emItem> + <emItem blockID="i348" id="{13c9f1f9-2322-4d5c-81df-6d4bf8476ba4}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i442" id="pennerdu@faceobooks.ws"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i99" id="pfzPXmnzQRXX6@2iABkVe.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i450" id="{dff137ae-1ffd-11e3-8277-b8ac6f996f26}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i750" id="{46eddf51-a4f6-4476-8d6c-31c5187b2a2f}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i282" id="{33e0daa6-3af3-d8b5-6752-10e949c61516}"> + <prefs/> + <versionRange minVersion="0" maxVersion="1.1.999" severity="1"/> + </emItem> + <emItem blockID="i238" id="/^pink@.*\.info$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="18.0"/> + </targetApplication> + </versionRange> + </emItem> + <emItem blockID="i489" id="astrovia@facebook.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1245" id="{4ED1F68A-5463-4931-9384-8FFF5ED91D92}"> + <prefs/> + <versionRange minVersion="0" maxVersion="3.9.9" severity="1"/> + </emItem> + <emItem blockID="i18" id="msntoolbar@msn.com"> + <prefs/> + <versionRange minVersion=" 0" maxVersion="6.*" severity="1"/> + </emItem> + <emItem blockID="i455" id="7d51fb17-b199-4d8f-894e-decaff4fc36a@a298838b-7f50-4c7c-9277-df6abbd42a0c.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i764" id="prositez@prz.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i474" id="{906000a4-88d9-4d52-b209-7a772970d91f}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i848" id="bcVX5@nQm9l.org"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i734" id="profsites@pr.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i926" id="{B1FC07E1-E05B-4567-8891-E63FBE545BA8}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="39.0a1"/> + </targetApplication> + </versionRange> + </emItem> + <emItem blockID="i382" id="{6926c7f7-6006-42d1-b046-eba1b3010315}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i806" id="{d9284e50-81fc-11da-a72b-0800200c9a66}"> + <prefs/> + <versionRange minVersion="0" maxVersion="7.7.34" severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="34.0a1"/> + </targetApplication> + </versionRange> + </emItem> + <emItem blockID="i782" id="safebrowse@safebrowse.co"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i812" id="{1e4ea5fc-09e5-4f45-a43b-c048304899fc}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i56" id="flash@adobe.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1032" id="KSqOiTeSJEDZtTGuvc18PdPmYodROmYzfpoyiCr2@jetpack"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i539" id="ScorpionSaver@jetpack"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i472" id="linksicle@linksicle.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i98" id="youtubeeing@youtuberie.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1213" id="unblocker20__web@unblocker.yt"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i578" id="jid1-XLjasWL55iEE1Q@jetpack"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1233" id="cloudmask@cloudmask.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="2.0.788" severity="1"/> + </emItem> + <emItem blockID="i582" id="discoverypro@discoverypro.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i346" id="{a6e67e6f-8615-4fe0-a599-34a73fc3fba5}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i688" id="firefox-extension@mozilla.org"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i63" id="youtube@youtuber.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i820" id="{aab02ab1-33cf-4dfa-8a9f-f4e60e976d27}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i521" id="/^({66b103a7-d772-4fcd-ace4-16f79a9056e0}|{6926c7f7-6006-42d1-b046-eba1b3010315}|{72cabc40-64b2-46ed-8648-26d831761150}|{73ee2cf2-7b76-4c49-b659-c3d8cf30825d}|{ca6446a5-73d5-4c35-8aa1-c71dc1024a18}|{5373a31d-9410-45e2-b299-4f61428f0be4})$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i322" id="jid0-Y6TVIzs0r7r4xkOogmJPNAGFGBw@jetpack"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1129" id="youtubeunblocker__web@unblocker.yt"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i24" id="{6E19037A-12E3-4295-8915-ED48BC341614}"> + <prefs/> + <versionRange minVersion="0.1" maxVersion="1.3.328.4" severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="3.7a1pre"/> + </targetApplication> + </versionRange> + </emItem> + <emItem blockID="i4" id="{4B3803EA-5230-4DC3-A7FC-33638F3D3542}"> + <prefs/> + <versionRange minVersion="1.2" maxVersion="1.2" severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="3.0a1"/> + </targetApplication> + </versionRange> + </emItem> + <emItem blockID="i66" id="youtubeer@youtuber.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1214" id="firefoxdav@icloud.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="1.4.22" severity="1"/> + </emItem> + <emItem blockID="i808" id="{c96d1ae6-c4cf-4984-b110-f5f561b33b5a}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i517" id="/^({16e193c8-1706-40bf-b6f3-91403a9a22be}|{284fed43-2e13-4afe-8aeb-50827d510e20}|{5e3cc5d8-ed11-4bed-bc47-35b4c4bc1033}|{7429e64a-1fd4-4112-a186-2b5630816b91}|{8c9980d7-0f09-4459-9197-99b3e559660c}|{8f1d9545-0bb9-4583-bb3c-5e1ac1e2920c})$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i460" id="{845cab51-d8d2-472f-8bd9-2b44642d97c2}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i136" id="Adobe@flash.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i441" id="{49c53dce-afa0-49a1-a08b-2eb8e8444128}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i527" id="/^({bfec236d-e122-4102-864f-f5f19d897f5e}|{3f842035-47f4-4f10-846b-6199b07f09b8}|{92ed4bbd-83f2-4c70-bb4e-f8d3716143fe})$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i800" id="{424b0d11-e7fe-4a04-b7df-8f2c77f58aaf}"> + <prefs> + <pref>browser.startup.homepage</pref> + <pref>browser.search.defaultenginename</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="d6425f24-8c9e-4c0a-89b4-6890fc68d5c9" id="/^\{(9321F452-96D5-11E6-BC3E-3769C7AD2208)|({18ED1ECA-96D3-11E6-A373-BD66C7AD2208})\}$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i920" id="{FCE04E1F-9378-4f39-96F6-5689A9159E45}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="39.0a1"/> + </targetApplication> + </versionRange> + </emItem> + <emItem blockID="i1050" id="87aukfkausiopoawjsuifhasefgased278djasi@jetpack"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i224" id="{336D0C35-8A85-403a-B9D2-65C292C39087}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i507" id="4zffxtbr-bs@VideoDownloadConverter_4z.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="5.75.3.25126" severity="1"/> + </emItem> + <emItem blockID="i22" id="ShopperReports@ShopperReports.com"> + <prefs/> + <versionRange minVersion="3.1.22.0" maxVersion="3.1.22.0" severity="1"/> + </emItem> + <emItem blockID="i1230" id="addon@gemaoff"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1137" id="/^({d50bfa5f-291d-48a8-909c-5f1a77b31948}|{d54bc985-6e7b-46cd-ad72-a4a266ad879e}|{d89e5de3-5543-4363-b320-a98cf150f86a}|{f3465017-6f51-4980-84a5-7bee2f961eba}|{fae25f38-ff55-46ea-888f-03b49aaf8812})$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i342" id="lbmsrvfvxcblvpane@lpaezhjez.org"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i840" id="{4889ddce-7a83-45e6-afc9-1e4f1149fff4}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i10" id="{8CE11043-9A15-4207-A565-0C94C42D590D}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i788" id="{729c9605-0626-4792-9584-4cbe65b243e6}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i548" id="/^firefox@(jumpflip|webconnect|browsesmart|mybuzzsearch|outobox|greygray|lemurleap|divapton|secretsauce|batbrowse|whilokii|linkswift|qualitink|browsefox|kozaka|diamondata|glindorus|saltarsmart|bizzybolt|websparkle)\.(com?|net|org|info|biz)$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i872" id="search-snacks@search-snacks.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i966" id="{5C655500-E712-41e7-9349-CE462F844B19}"> + <prefs/> + <versionRange minVersion="0" maxVersion="1.0.1-signed" severity="1"/> + </emItem> + <emItem blockID="i90" id="videoplugin@player.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1012" id="wxtui502n2xce9j@no14"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i508" id="advance@windowsclient.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i1022" id="g99hiaoekjoasiijdkoleabsy278djasi@jetpack"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i165" id="{EEF73632-A085-4fd3-A778-ECD82C8CB297}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i499" id="{babb9931-ad56-444c-b935-38bffe18ad26}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i75" id="firebug@software.joehewitt.com" os="Darwin,Linux"> + <prefs/> + <versionRange minVersion="1.9.0" maxVersion="1.9.0" severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="9.*" minVersion="9.0a1"/> + </targetApplication> + </versionRange> + </emItem> + <emItem blockID="i1264" id="suchpony@suchpony.de"> + <prefs/> + <versionRange minVersion="0" maxVersion="1.6.7" severity="3"/> + </emItem> + <emItem blockID="i656" id="hdv@vovcacik.addons.mozilla.org"> + <prefs/> + <versionRange minVersion="102.0" maxVersion="102.0" severity="3"/> + </emItem> + <emItem blockID="i722" id="{9802047e-5a84-4da3-b103-c55995d147d1}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i228" id="crossriderapp5060@crossrider.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i470" id="extension@FastFreeConverter.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i55" id="youtube@youtube7.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i440" id="{2d069a16-fca1-4e81-81ea-5d5086dcbd0c}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i1077" id="helper@vidscrab.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i1492" id="googlotim@gmail.com"> + <prefs/> + <versionRange minVersion="1.3.2" maxVersion="1.3.2" severity="1"/> + </emItem> + <emItem blockID="i93" id="{68b8676b-99a5-46d1-b390-22411d8bcd61}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i664" id="123456789@offeringmedia.com"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i630" id="webbooster@iminent.com"> + <prefs> + <pref>browser.startup.homepage</pref> + <pref>browser.search.defaultenginename</pref> + </prefs> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i842" id="{746505DC-0E21-4667-97F8-72EA6BCF5EEF}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i868" id="{6e7f6f9f-8ce6-4611-add2-05f0f7049ee6}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i624" id="/^({b95faac1-a3d7-4d69-8943-ddd5a487d966}|{ecce0073-a837-45a2-95b9-600420505f7e}|{2713b394-286f-4d7c-89ea-4174eeab9f5a}|{da7a20cf-bef4-4342-ad78-0240fdf87055})$/"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="1"/> + </emItem> + <emItem blockID="i101" id="{3a12052a-66ef-49db-8c39-e5b0bd5c83fa}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + <emItem blockID="i107" id="{ABDE892B-13A8-4d1b-88E6-365A6E755758}" os="WINNT"> + <prefs/> + <versionRange minVersion="0" maxVersion="15.0.5" severity="1"/> + </emItem> + <emItem blockID="2447476f-043b-4d0b-9d3c-8e859c97d950" id="{44e4b2cf-77ba-4f76-aca7-f3fcbc2dda2f}"> + <prefs/> + <versionRange minVersion="0" maxVersion="*" severity="3"/> + </emItem> + </emItems> + <pluginItems> + <pluginItem blockID="p416"> + <match exp="JavaAppletPlugin\.plugin" name="filename"/> + <versionRange maxVersion="Java 6 Update 45" minVersion="Java 6 Update 42" severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="17.0"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p184"> + <match exp="Java\(TM\) Plug-in 1\.7\.0(_0?([0-9]|(1[0-1]))?)?([^\d\._]|$)" name="name"/> + <match exp="libnpjp2\.so" name="filename"/> + <versionRange severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="17.0"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p1139"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="18.0.0.329" minVersion="18.0.0.326" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1076" os="Linux"> + <match exp="libflashplayer\.so" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="11.2.202.554" minVersion="11.2.202.549" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1028" os="Linux"> + <match exp="libflashplayer\.so" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="11.2.202.508" minVersion="11.2.202.482" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p456"> + <match exp="npvlc\.dll" name="filename"/> + <versionRange maxVersion="2.0.5" minVersion="0" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p156"> + <match exp="nppdf32\.dll" name="filename"/> + <versionRange maxVersion="9.5.1" minVersion="0" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p158"> + <match exp="nppdf32\.dll" name="filename"/> + <versionRange maxVersion="10.1.5.9999" minVersion="10.0" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1044" os="Linux"> + <match exp="libflashplayer\.so" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="11.2.202.539" minVersion="11.2.202.509" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p956"> + <match exp="JavaAppletPlugin\.plugin" name="filename"/> + <infoURL>https://java.com/</infoURL> + <versionRange maxVersion="Java 8 Update 45" minVersion="Java 8 Update 45" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p32"> + <match exp="npViewpoint.dll" name="filename"/> + <versionRange> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="3.0"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p180"> + <match exp="JavaAppletPlugin\.plugin" name="filename"/> + <infoURL>https://java.com/</infoURL> + <versionRange maxVersion="Java 7 Update 10" minVersion="Java 7 Update 0" severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="17.0"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p1140"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="20.0.0.306" minVersion="20.0.0.286" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p830" os="Linux"> + <match exp="libflashplayer\.so" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="11.2.202.441" minVersion="11.2.202.439" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p938"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="18.0.0.202" minVersion="18.0.0.194" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1122"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="18.0.0.326" minVersion="18.0.0.268" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p134"> + <match exp="Java\(TM\) Platform SE 7 U[5-6](\s[^\d\._U]|$)" name="name"/> + <match exp="npjp2\.dll" name="filename"/> + <versionRange severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="17.*" minVersion="0.1"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p592"> + <match exp="CiscoWebCommunicator\.plugin" name="filename"/> + <versionRange maxVersion="3.0.5.99999999999999" minVersion="0" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p944"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="13.0.0.302" minVersion="13.0.0.302" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1495" os="Linux"> + <match exp="libflashplayer\.so" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="24.0.0.186" minVersion="23.0.0.207" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1420"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="23.0.0.205" minVersion="23.0.0.185" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="26c2a4e2-9aff-4ab1-b654-20e478b375f0" os="Linux"> + <match exp="libflashplayer\.so" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="24.0.0.221" minVersion="24.0.0.194" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p248"> + <match exp="Scorch\.plugin" name="filename"/> + <versionRange maxVersion="6.2.0b88" minVersion="0" severity="1"/> + </pluginItem> + <pluginItem blockID="p1141"> + <match exp="JavaAppletPlugin\.plugin" name="filename"/> + <infoURL>https://java.com/</infoURL> + <versionRange maxVersion="Java 7 Update 97" minVersion="Java 7 Update 91" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1053"> + <match exp="nprpplugin\.dll" name="filename"/> + <infoURL>https://real.com/</infoURL> + <versionRange maxVersion="17.0.10.7" minVersion="0" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p94"> + <match exp="Flash\ Player\.plugin" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="10.2.159.1" minVersion="0" severity="0"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="17.0.1" minVersion="0.1"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p31"> + <match exp="NPMySrch.dll" name="filename"/> + </pluginItem> + <pluginItem blockID="2b608fae-1750-4a06-a142-0bc9ba17a7d0"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="24.0.0.221" minVersion="24.0.0.194" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1020"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="13.*" minVersion="13.0" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p958"> + <match exp="Java\(TM\) Platform SE 7 U(79|80)(\s[^\d\._U]|$)" name="name"/> + <match exp="npjp2\.dll" name="filename"/> + <infoURL>https://java.com/</infoURL> + <versionRange severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p254"> + <match exp="PDF Browser Plugin\.plugin" name="filename"/> + <versionRange maxVersion="2.4.2" minVersion="0" severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="18.0a1"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p102"> + <match exp="npmozax\.dll" name="filename"/> + <versionRange maxVersion="*" minVersion="0"/> + </pluginItem> + <pluginItem blockID="p1419" os="Linux"> + <match exp="libflashplayer\.so" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="11.2.202.643" minVersion="11.2.202.637" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p80"> + <match exp="\(TM\)" name="name"/> + <match exp="(npjp2\.dll)|(libnpjp2\.so)" name="filename"/> + <match exp="[^\d\._]((0(\.\d+(\.\d+([_\.]\d+)?)?)?)|(1\.(([0-5](\.\d+([_\.]\d+)?)?)|(6(\.0([_\.](0?\d|1\d|2\d|30))?)?)|(7(\.0([_\.][0-2])?)?))))([^\d\._]|$)" name="description"/> + <versionRange severity="1"/> + </pluginItem> + <pluginItem blockID="p1415"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="18.0.0.382" minVersion="18.0.0.366" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p182"> + <match exp="Java\(TM\) Platform SE 7 U([0-9]|(1[0-1]))(\s[^\d\._U]|$)" name="name"/> + <match exp="npjp2\.dll" name="filename"/> + <versionRange severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="17.0"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p332"> + <match exp="libflashplayer\.so" name="filename"/> + <match exp="^Shockwave Flash 11.(0|1) r[0-9]{1,3}$" name="description"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="19.0a1"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p332"> + <match exp="libflashplayer\.so" name="filename"/> + <match exp="^Shockwave Flash 11.(0|1) r[0-9]{1,3}$" name="description"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="17.0.*" minVersion="17.0.4"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p1236"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="21.0.0.242" minVersion="21.0.0.226" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p176"> + <match exp="(NPSWF32\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="10.3.183.18.999" minVersion="10.3" severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="19.0a1"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p176"> + <match exp="(NPSWF32\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="10.3.183.18.999" minVersion="10.3" severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="17.0.*" minVersion="17.0.4"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="3f136e56-4c93-4619-8c0d-d86258c1065d"> + <match exp="(nppdf32\.dll)|(AdobePDFViewerNPAPI\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/reader/</infoURL> + <versionRange maxVersion="15.006.30244" minVersion="15.006" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="43b45ad8-a373-42c1-89c6-64e2746885e5"> + <match exp="(nppdf32\.dll)|(AdobePDFViewerNPAPI\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/reader/</infoURL> + <versionRange maxVersion="15.020.20042" minVersion="15.020" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p366"> + <match exp="Scorch\.plugin" name="filename"/> + <versionRange maxVersion="6.2.0" minVersion="6.2.0" severity="1"/> + </pluginItem> + <pluginItem blockID="p936" os="Linux"> + <match exp="libflashplayer\.so" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="11.2.202.480" minVersion="11.2.202.468" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p123"> + <match exp="JavaPlugin2_NPAPI\.plugin" name="filename"/> + <versionRange maxVersion="14.2.0" minVersion="0" severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="17.*" minVersion="0.1"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p89" os="Darwin"> + <match exp="AdobePDFViewerNPAPI\.plugin" name="filename"/> + <versionRange maxVersion="10.1.3" minVersion="0" severity="1"/> + </pluginItem> + <pluginItem blockID="p904"> + <match exp="JavaAppletPlugin\.plugin" name="filename"/> + <infoURL>https://java.com/</infoURL> + <versionRange maxVersion="Java 8 Update 44" minVersion="Java 8" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1002"> + <match exp="npUnity3D32\.dll" name="filename"/> + <versionRange maxVersion="5.0.3f1" minVersion="5.0" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p85"> + <match exp="JavaPlugin2_NPAPI\.plugin" name="filename"/> + <versionRange maxVersion="13.6.0" minVersion="0" severity="1"/> + </pluginItem> + <pluginItem blockID="p1246"> + <match exp="(nppdf32\.dll)|(AdobePDFViewerNPAPI\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/reader</infoURL> + <versionRange maxVersion="11.0.16 " minVersion="10.1.6" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p408"> + <match exp="QuickTime Plugin\.plugin" name="filename"/> + <versionRange maxVersion="7.6.5" minVersion="0" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1413"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="23.0.0.185" minVersion="22.0.0.211" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p946"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="18.0.0.203" minVersion="18.0.0.203" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p214"> + <match exp="Java\(TM\) Platform SE 7 U7(\s[^\d\._U]|$)" name="name"/> + <match exp="npjp2\.dll" name="filename"/> + <versionRange severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="17.*" minVersion="0.1"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p132"> + <match exp="Java\(TM\) Plug-in 1\.7\.0(_0?([5-6]))?([^\d\._]|$)" name="name"/> + <match exp="libnpjp2\.so" name="filename"/> + <versionRange severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="17.*" minVersion="0.1"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p420"> + <match exp="Java\(TM\) Platform SE 7 U(1[6-9]|2[0-4])(\s[^\d\._U]|$)" name="name"/> + <match exp="npjp2\.dll" name="filename"/> + <versionRange severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="17.0"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="59c31ade-88d6-4b22-8601-5316f82e3977"> + <match exp="(nppdf32\.dll)|(AdobePDFViewerNPAPI\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/reader/</infoURL> + <versionRange maxVersion="11.0.18" minVersion="11.0" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1004"> + <match exp="Unity Web Player\.plugin" name="filename"/> + <match exp="^($|Unity Web Player version 5.0(\.([0-2]|3f1))?[^0-9.])" name="description"/> + <versionRange severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p459"> + <match exp="JavaAppletPlugin\.plugin" name="filename"/> + <versionRange maxVersion="Java 7 Update 44" minVersion="Java 7 Update 25" severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="17.0"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p296"> + <match exp="Java\(TM\) Plug-in 1\.7\.0_1[2-5]([^\d\._]|$)" name="name"/> + <match exp="libnpjp2\.so" name="filename"/> + <versionRange severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="17.0"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p457"> + <match exp="Java(\(TM\))? Plug-in ((1\.7\.0_(2[5-9]|3\d|4[0-4]))|(10\.4[0-4](\.[0-9]+)?))([^\d\._]|$)" name="name"/> + <match exp="libnpjp2\.so" name="filename"/> + <versionRange severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="17.0"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p1054"> + <match exp="np32dsw_[0-9]+\.dll" name="filename"/> + <infoURL>https://get.adobe.com/shockwave/</infoURL> + <versionRange maxVersion="12.2.0.162" minVersion="0" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p834"> + <match exp="(NPSWF32.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="13.0.0.268" minVersion="13.0.0.263" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p138"> + <match exp="JavaAppletPlugin\.plugin" name="filename"/> + <versionRange maxVersion="Java 7 Update 06" minVersion="Java 7 Update 01" severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="17.*" minVersion="0.1"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p212"> + <match exp="JavaAppletPlugin\.plugin" name="filename"/> + <versionRange maxVersion="Java 7 Update 07" minVersion="Java 7 Update 07" severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="17.*" minVersion="0.1"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p832"> + <match exp="(NPSWF32.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="16.0.0.304" minVersion="16.0.0.295" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p188"> + <match exp="JavaAppletPlugin\.plugin" name="filename"/> + <versionRange maxVersion="Java 6 Update 38" minVersion="Java 6 Update 0" severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="17.0"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p1142"> + <match exp="JavaAppletPlugin\.plugin" name="filename"/> + <infoURL>https://java.com/</infoURL> + <versionRange maxVersion="Java 8 Update 76" minVersion="Java 8 Update 64" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p154"> + <match exp="npctrl\.dll" name="filename"/> + <versionRange maxVersion="5.1.20124.9999" minVersion="5.0" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p826" os="Linux"> + <match exp="libflashplayer\.so" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="11.2.202.439" minVersion="11.2.202.425" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1061"> + <match exp="Java\(TM\) Platform SE 7 U(8[1-9]|90)(\s[^\d\._U]|$)" name="name"/> + <match exp="npjp2\.dll" name="filename"/> + <infoURL>https://java.com/</infoURL> + <versionRange severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p26"> + <match exp="^Yahoo Application State Plugin$" name="name"/> + <match exp="npYState.dll" name="filename"/> + <match exp="^Yahoo Application State Plugin$" name="description"/> + <versionRange> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="3.*" minVersion="3.0a1"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p1065" os="Linux"> + <match exp="libflashplayer\.so" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="11.2.202.548" minVersion="11.2.202.540" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1026"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="18.0.0.232" minVersion="18.0.0.204" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1274"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="22.0.0.211" minVersion="22.0.0.192" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p422"> + <match exp="JavaAppletPlugin\.plugin" name="filename"/> + <versionRange maxVersion="Java 7 Update 24" minVersion="Java 7 Update 16" severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="17.0"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p962"> + <match exp="Java(\(TM\))? Plug-in 10\.(79|80)(\.[0-9]+)?([^\d\._]|$)" name="name"/> + <match exp="libnpjp2\.so" name="filename"/> + <infoURL>https://java.com/</infoURL> + <versionRange severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p902"> + <match exp="JavaAppletPlugin\.plugin" name="filename"/> + <infoURL>https://java.com/</infoURL> + <versionRange maxVersion="Java 7 Update 78" minVersion="Java 7 Update 45" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1273"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="18.0.0.366" minVersion="18.0.0.360" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p125"> + <match exp="Java\(TM\) Platform SE ((6( U(\d|([0-2]\d)|3[0-2]))?)|(7(\sU[0-4])?))(\s[^\d\._U]|$)" name="name"/> + <match exp="npjp2\.dll" name="filename"/> + <versionRange severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="17.*" minVersion="0.1"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p1059"> + <match exp="JavaAppletPlugin\.plugin" name="filename"/> + <infoURL>https://java.com/</infoURL> + <versionRange maxVersion="Java 7 Update 90" minVersion="Java 7 Update 81" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p908"> + <match exp="Java\(TM\) Platform SE 8( U([1-3]?\d|4[0-4]))?(\s[^\d\._U]|$)" name="name"/> + <match exp="npjp2\.dll" name="filename"/> + <infoURL>https://java.com/</infoURL> + <versionRange severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1252" os="Linux"> + <match exp="libflashplayer\.so" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="11.2.202.626" minVersion="11.2.202.621" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1149"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="18.0.0.333" minVersion="18.0.0.329" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p252" os="Darwin"> + <match exp="AdobePDFViewerNPAPI\.plugin" name="filename"/> + <versionRange maxVersion="11.0.01" minVersion="11.0.0" severity="1"/> + </pluginItem> + <pluginItem blockID="p1253"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="18.0.0.360" minVersion="18.0.0.352" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1226"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="21.0.0.226" minVersion="21.0.0.197" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p186"> + <match exp="Java\(TM\) Platform SE 6 U3[1-8](\s[^\d\._U]|$)" name="name"/> + <match exp="npjp2\.dll" name="filename"/> + <versionRange severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="17.0"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p572"> + <match exp="npdjvu\.dll" name="filename"/> + <versionRange maxVersion="6.1.4.27993" minVersion="0" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p210"> + <match exp="Java\(TM\) Plug-in 1\.7\.0(_0?7)?([^\d\._]|$)" name="name"/> + <match exp="libnpjp2\.so" name="filename"/> + <versionRange severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="17.*" minVersion="0.1"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p412"> + <match exp="Java\(TM\) Plug-in 1\.6\.0_4[2-5]([^\d\._]|$)" name="name"/> + <match exp="libnpjp2\.so" name="filename"/> + <versionRange severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="17.0"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="911f052b-77a0-46c4-bacf-9a6fd5b2044b" os="Linux"> + <match exp="libflashplayer\.so" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="25.0.0.163" minVersion="25.0.0.127" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p34"> + <match exp="[Nn][Pp][Jj][Pp][Ii]1[56]0_[0-9]+\.[Dd][Ll][Ll]" name="filename"/> + <versionRange> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="3.6a1pre"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p1494"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="24.0.0.186" minVersion="23.0.0.207" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p798"> + <match exp="(NPSWF32.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="15.0.0.242" minVersion="14.0" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="97647cd8-03c5-416c-b9d3-cd5ef87ab39f"> + <match exp="np32dsw_1227197\.dll" name="filename"/> + <versionRange maxVersion="12.2.7.197" minVersion="0" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p960"> + <match exp="Java\(TM\) Platform SE 8 U45(\s[^\d\._U]|$)" name="name"/> + <match exp="npjp2\.dll" name="filename"/> + <infoURL>https://java.com/</infoURL> + <versionRange severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p292"> + <match exp="JavaAppletPlugin\.plugin" name="filename"/> + <versionRange maxVersion="Java 7 Update 15" minVersion="Java 7 Update 12" severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="17.0"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p954"> + <match exp="JavaAppletPlugin\.plugin" name="filename"/> + <infoURL>https://java.com/</infoURL> + <versionRange maxVersion="Java 7 Update 80" minVersion="Java 7 Update 79" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p928"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="13.0.0.295" minVersion="13.0.0.269" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p190"> + <match exp="Java\(TM\) Plug-in 1\.6\.0_3[1-8]([^\d\._]|$)" name="name"/> + <match exp="libnpjp2\.so" name="filename"/> + <versionRange severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="17.0"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p1234" os="Linux"> + <match exp="libflashplayer\.so" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="11.2.202.621" minVersion="11.2.202.616" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1062"> + <match exp="Java\(TM\) Platform SE 8 U(4[6-9]|5\d|6[0-4])(\s[^\d\._U]|$)" name="name"/> + <match exp="npjp2\.dll" name="filename"/> + <infoURL>https://java.com/</infoURL> + <versionRange severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p794"> + <match exp="(NPSWF32.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="13.0.0.258" minVersion="10.3.183.66" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1148"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="21.0.0.197" minVersion="20.0.0.306" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1235"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="18.0.0.352" minVersion="18.0.0.343" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p160"> + <match exp="NPSWF32\.dll" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="10.2.9999" minVersion="0" severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="16.*" minVersion="4.0"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p129"> + <match exp="Silverlight\.plugin" name="filename"/> + <versionRange maxVersion="5.0.99999" minVersion="0" severity="1"/> + </pluginItem> + <pluginItem blockID="p294"> + <match exp="Java\(TM\) Platform SE 7 U1[2-5](\s[^\d\._U]|$)" name="name"/> + <match exp="npjp2\.dll" name="filename"/> + <versionRange severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="17.0"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p330"> + <match exp="libflashplayer\.so" name="filename"/> + <match exp="^Shockwave Flash (([1-9]\.[0-9]+)|(10\.([0-2]|(3 r(([0-9][0-9]?)|1(([0-7][0-9])|8[0-2]))))))( |$)" name="description"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="19.0a1"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p330"> + <match exp="libflashplayer\.so" name="filename"/> + <match exp="^Shockwave Flash (([1-9]\.[0-9]+)|(10\.([0-2]|(3 r(([0-9][0-9]?)|1(([0-7][0-9])|8[0-2]))))))( |$)" name="description"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="17.0.*" minVersion="17.0.4"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p152"> + <match exp="npctrl\.dll" name="filename"/> + <versionRange maxVersion="4.1.10328.0" minVersion="0" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1067"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="19.0.0.245" minVersion="19.0.0.226" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1060"> + <match exp="JavaAppletPlugin\.plugin" name="filename"/> + <infoURL>https://java.com/</infoURL> + <versionRange maxVersion="Java 8 Update 64" minVersion="Java 8 Update 46" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p290"> + <match exp="(NPSWF32\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="10.3.183.66" minVersion="10.3.183.19" severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="19.0a1"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p290"> + <match exp="(NPSWF32\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="10.3.183.66" minVersion="10.3.183.19" severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="17.0.*" minVersion="17.0.4"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p33"> + <match exp="[0-6]\.0\.[01]\d{2}\.\d+" name="name"/> + <match exp="npdeploytk.dll" name="filename"/> + <versionRange severity="1"/> + </pluginItem> + <pluginItem blockID="p1144"> + <match exp="Java\(TM\) Platform SE 8 U(6[4-9]|7[0-6])(\s[^\d\._U]|$)" name="name"/> + <match exp="npjp2\.dll" name="filename"/> + <infoURL>https://java.com/</infoURL> + <versionRange severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1063"> + <match exp="Java(\(TM\))? Plug-in 10\.(8[1-9]|90)(\.[0-9]+)?([^\d\._]|$)" name="name"/> + <match exp="libnpjp2\.so" name="filename"/> + <infoURL>https://java.com/</infoURL> + <versionRange severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p556"> + <match exp="npUnity3D32\.dll" name="filename"/> + <versionRange maxVersion="4.6.6f1" minVersion="0" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1250"> + <match exp="(nppdf32\.dll)|(AdobePDFViewerNPAPI\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/reader</infoURL> + <versionRange maxVersion="15.016.20045" minVersion="15.016.20045" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1151"> + <match exp="npqtplugin\.dll" name="filename"/> + <infoURL>https://support.apple.com/en-us/HT205771</infoURL> + <versionRange maxVersion="*" minVersion="0" severity="0" vulnerabilitystatus="2"/> + </pluginItem> + <pluginItem blockID="p558"> + <match exp="Unity Web Player\.plugin" name="filename"/> + <match exp="^($|Unity Web Player version ([0-3]|(4\.([0-5]|6(\.([0-5]|6f1)))?[^0-9.])))" name="description"/> + <versionRange severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1146"> + <match exp="Java(\(TM\))? Plug-in 11\.(6[4-9]|7[0-6])(\.[0-9]+)?([^\d\._]|$)" name="name"/> + <match exp="libnpjp2\.so" name="filename"/> + <infoURL>https://java.com/</infoURL> + <versionRange severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p948" os="Linux"> + <match exp="libflashplayer\.so" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="11.2.202.481" minVersion="11.2.202.481" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1143"> + <match exp="Java\(TM\) Platform SE 7 U(9[1-7])(\s[^\d\._U]|$)" name="name"/> + <match exp="npjp2\.dll" name="filename"/> + <infoURL>https://java.com/</infoURL> + <versionRange severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p964"> + <match exp="Java(\(TM\))? Plug-in 11\.45(\.[0-9]+)?([^\d\._]|$)" name="name"/> + <match exp="libnpjp2\.so" name="filename"/> + <infoURL>https://java.com/</infoURL> + <versionRange severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1075"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="18.0.0.268" minVersion="18.0.0.262" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p250"> + <match exp="npFoxitReaderPlugin\.dll" name="filename"/> + <versionRange maxVersion="2.2.1.530" minVersion="0" severity="0" vulnerabilitystatus="2"/> + </pluginItem> + <pluginItem blockID="p1052"> + <match exp="JavaAppletPlugin\.plugin" name="filename"/> + <infoURL>https://java.com/</infoURL> + <versionRange maxVersion="Java 7 Update 11" minVersion="Java 7 Update 11" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1272" os="Linux"> + <match exp="libflashplayer\.so" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="11.2.202.632" minVersion="11.2.202.626" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1412" os="Linux"> + <match exp="libflashplayer\.so" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="11.2.202.637" minVersion="11.2.202.632" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="c762d84b-9fce-425d-bc60-389a431d4453" os="Linux"> + <match exp="libflashplayer\.so" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="25.0.0.127" minVersion="24.0.0.221" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1121"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="20.0.0.286" minVersion="20.0.0.235" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p574"> + <match exp="NPDjVu\.plugin" name="filename"/> + <versionRange maxVersion="6.1.1" minVersion="0" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p28"> + <match exp="NPFFAddOn.dll" name="filename"/> + </pluginItem> + <pluginItem blockID="p1421" os="Linux"> + <match exp="libflashplayer\.so" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="23.0.0.207" minVersion="11.2.202.643" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p302"> + <match exp="Java\(TM\) Plug-in 1\.6\.0_(39|40|41)([^\d\._]|$)" name="name"/> + <match exp="libnpjp2\.so" name="filename"/> + <versionRange severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="17.0"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p260"> + <match exp="(NPSWF32\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="10.2.9999" minVersion="0" severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="18.0a1"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p260"> + <match exp="(NPSWF32\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="10.2.9999" minVersion="0" severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="17.0.*" minVersion="17.0.4"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p242" os="Darwin"> + <match exp="Flip4Mac" name="description"/> + <versionRange maxVersion="2.4.3.999" minVersion="0" severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="18.0a1"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p298"> + <match exp="JavaAppletPlugin\.plugin" name="filename"/> + <versionRange maxVersion="Java 6 Update 41" minVersion="Java 6 Update 39" severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="17.0"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p458"> + <match exp="Java\(TM\) Platform SE 7 U(2[5-9]|3\d|4[0-4])(\s[^\d\._U]|$)" name="name"/> + <match exp="npjp2\.dll" name="filename"/> + <versionRange severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="17.0"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p119"> + <match exp="Java\(TM\) Plug-in 1\.(6\.0_(\d|[0-2]\d?|3[0-2])|7\.0(_0?([1-4]))?)([^\d\._]|$)" name="name"/> + <match exp="libnpjp2\.so" name="filename"/> + <versionRange severity="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="17.*" minVersion="0.1"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="d20ea67f-d851-4c59-a3aa-f7081248b14e"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="25.0.0.127" minVersion="24.0.0.221" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p428"> + <match exp="np[dD]eployJava1\.dll" name="filename"/> + <versionRange severity="0" vulnerabilitystatus="2"/> + </pluginItem> + <pluginItem blockID="p1145"> + <match exp="Java(\(TM\))? Plug-in 10\.(9[1-7])(\.[0-9]+)?([^\d\._]|$)" name="name"/> + <match exp="libnpjp2\.so" name="filename"/> + <infoURL>https://java.com/</infoURL> + <versionRange severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1048"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="19.0.0.225" minVersion="19.0" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1064"> + <match exp="Java(\(TM\))? Plug-in 11\.(4[6-9]|5\d|6[0-4])(\.[0-9]+)?([^\d\._]|$)" name="name"/> + <match exp="libnpjp2\.so" name="filename"/> + <infoURL>https://java.com/</infoURL> + <versionRange severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p300"> + <match exp="Java\(TM\) Platform SE 6 U(39|40|41)(\s[^\d\._U]|$)" name="name"/> + <match exp="npjp2\.dll" name="filename"/> + <versionRange severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="17.0"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p240"> + <match exp="DivXBrowserPlugin\.plugin" name="filename"/> + <versionRange maxVersion="1.4" minVersion="0" severity="1"/> + </pluginItem> + <pluginItem blockID="p1254"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="22.0.0.192" minVersion="21.0.0.242" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1055"> + <match exp="DirectorShockwave\.plugin" name="filename"/> + <infoURL>https://get.adobe.com/shockwave/</infoURL> + <versionRange maxVersion="12.2.0.162" minVersion="0" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p796" os="Linux"> + <match exp="libflashplayer\.so" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="11.2.202.424" minVersion="0" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p824"> + <match exp="(NPSWF32.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="13.0.0.263" minVersion="13.0.0.259" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1123" os="Linux"> + <match exp="libflashplayer\.so" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="11.2.202.559" minVersion="11.2.202.554" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p328"> + <match exp="Silverlight\.plugin" name="filename"/> + <versionRange maxVersion="5.1.20124.9999" minVersion="5.1" severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="19.0a1"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p328"> + <match exp="Silverlight\.plugin" name="filename"/> + <versionRange maxVersion="5.1.20124.9999" minVersion="5.1" severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="17.0.*" minVersion="17.0.4"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p940"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="13.0.0.301" minVersion="13.0.0.296" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p414"> + <match exp="Java\(TM\) Platform SE 6 U4[2-5](\s[^\d\._U]|$)" name="name"/> + <match exp="npjp2\.dll" name="filename"/> + <versionRange severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="17.0"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p178"> + <match exp="(NPSWF[0-9_]*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="11.7.700.169" minVersion="11.0" severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="19.0a1"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p178"> + <match exp="(NPSWF[0-9_]*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="11.7.700.169" minVersion="11.0" severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="17.0.*" minVersion="17.0.4"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p1225"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="18.0.0.343" minVersion="18.0.0.333" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1046"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="18.0.0.254" minVersion="18.0.0.233" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p828"> + <match exp="(NPSWF32.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="16.0.0.287" minVersion="15.0.0.243" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="e939e3f9-cb55-494d-b95a-c5ac82bd8d3d" os="Linux"> + <match exp="libflashplayer\.so" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="24.0.0.194" minVersion="24.0.0.186" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p113"> + <match exp="npuplaypc\.dll" name="filename"/> + <versionRange maxVersion="1.0.0.0" minVersion="0" severity="1"/> + </pluginItem> + <pluginItem blockID="p1247"> + <match exp="(nppdf32\.dll)|(AdobePDFViewerNPAPI\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/reader</infoURL> + <versionRange maxVersion="15.006.30174" minVersion="15.006.30174" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1422"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="23.0.0.207" minVersion="23.0.0.205" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="ee35afac-d936-4e77-bbb1-bf7d0656f985"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="25.0.0.163" minVersion="25.0.0.127" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p418"> + <match exp="Java\(TM\) Plug-in 1\.7\.0_(1[6-9]|2[0-4])([^\d\._]|$)" name="name"/> + <match exp="libnpjp2\.so" name="filename"/> + <versionRange severity="0" vulnerabilitystatus="1"> + <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"> + <versionRange maxVersion="*" minVersion="17.0"/> + </targetApplication> + </versionRange> + </pluginItem> + <pluginItem blockID="p1066"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="18.0.0.261" minVersion="18.0.0.255" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p912"> + <match exp="Java(\(TM\))? Plug-in 11\.(\d|[1-3]\d|4[0-4])(\.[0-9]+)?([^\d\._]|$)" name="name"/> + <match exp="libnpjp2\.so" name="filename"/> + <infoURL>https://java.com/</infoURL> + <versionRange severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1120"> + <match exp="(Silverlight\.plugin|npctrl\.dll)" name="filename"/> + <infoURL>https://www.microsoft.com/getsilverlight</infoURL> + <versionRange maxVersion="5.1.41105.0" minVersion="5.1.20125" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p594"> + <match exp="npCiscoWebCommunicator\.dll" name="filename"/> + <versionRange maxVersion="3.0.5.99999999999999" minVersion="0" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p932" os="Linux"> + <match exp="libflashplayer\.so" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="11.2.202.467" minVersion="11.2.202.442" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p906"> + <match exp="Java\(TM\) Platform SE 7 U(4[5-9]|(5|6)\d|7[0-8])(\s[^\d\._U]|$)" name="name"/> + <match exp="npjp2\.dll" name="filename"/> + <infoURL>https://java.com/</infoURL> + <versionRange severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p910"> + <match exp="Java(\(TM\))? Plug-in 10\.(4[5-9]|(5|6)\d|7[0-8])(\.[0-9]+)?([^\d\._]|$)" name="name"/> + <match exp="libnpjp2\.so" name="filename"/> + <infoURL>https://java.com/</infoURL> + <versionRange severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p930"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="18.0.0.193" minVersion="16.0.0.305" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1074"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="20.0.0.235" minVersion="19.0.0.246" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1150" os="Linux"> + <match exp="libflashplayer\.so" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="11.2.202.577" minVersion="11.2.202.569" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="f77960ca-28f3-4664-994d-2b713d2a1434"> + <match exp="(NPSWF32.*\.dll)|(NPSWF64.*\.dll)|(Flash\ Player\.plugin)" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="24.0.0.194" minVersion="24.0.0.186" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1138" os="Linux"> + <match exp="libflashplayer\.so" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="11.2.202.569" minVersion="11.2.202.559" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + <pluginItem blockID="p1224" os="Linux"> + <match exp="libflashplayer\.so" name="filename"/> + <infoURL>https://get.adobe.com/flashplayer/</infoURL> + <versionRange maxVersion="11.2.202.616" minVersion="11.2.202.577" severity="0" vulnerabilitystatus="1"/> + </pluginItem> + </pluginItems> + <gfxItems> + <gfxBlacklistEntry blockID="g35"> + <os>WINNT 6.1</os> + <vendor>0x10de</vendor> + <feature>DIRECT2D</feature> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>8.17.12.5896</driverVersion> + <driverVersionComparator>LESS_THAN_OR_EQUAL</driverVersionComparator> + <devices> + <device>0x0a6c</device> + </devices> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g194"> + <os>WINNT 6.2</os> + <vendor>0x1022</vendor> + <feature>DIRECT2D</feature> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>9.10.8.0</driverVersion> + <driverVersionComparator>LESS_THAN_OR_EQUAL</driverVersionComparator> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g1070"> + <os>All</os> + <vendor>0x8086</vendor> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>8.15.10.1872</driverVersion> + <driverVersionComparator>EQUAL</driverVersionComparator> + <devices> + <device>0x2a42</device> + <device>0x2e22</device> + <device>0x2e12</device> + <device>0x2e32</device> + <device>0x0046</device> + </devices> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g1073"> + <os>All</os> + <vendor>0x8086</vendor> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>8.15.10.1994</driverVersion> + <driverVersionComparator>EQUAL</driverVersionComparator> + <devices> + <device>0x2a42</device> + <device>0x2e22</device> + <device>0x2e12</device> + <device>0x2e32</device> + <device>0x0046</device> + </devices> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g1216"> + <os>WINNT 5.2</os> + <vendor>0x8086</vendor> + <feature>HARDWARE_VIDEO_DECODING</feature> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>10.18.10.3947</driverVersion> + <driverVersionComparator>EQUAL</driverVersionComparator> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g1220"> + <os>WINNT 6.3</os> + <vendor>0x8086</vendor> + <feature>HARDWARE_VIDEO_DECODING</feature> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>10.18.10.3947</driverVersion> + <driverVersionComparator>EQUAL</driverVersionComparator> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g234"> + <os>Darwin 12</os> + <vendor>0x1002</vendor> + <feature>WEBGL_MSAA</feature> + <featureStatus>BLOCKED_DEVICE</featureStatus> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g204"> + <os>Darwin 10</os> + <vendor>0x8086</vendor> + <feature>WEBGL_MSAA</feature> + <featureStatus>BLOCKED_DEVICE</featureStatus> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g144"> + <os>All</os> + <vendor>0x1002</vendor> + <feature>DIRECT2D</feature> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>8.982.0.0</driverVersion> + <driverVersionComparator>EQUAL</driverVersionComparator> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g511"> + <os>WINNT 5.1</os> + <vendor>0x8086</vendor> + <feature>DIRECT3D_9_LAYERS</feature> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>6.14.10.5218</driverVersion> + <driverVersionComparator>LESS_THAN</driverVersionComparator> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g230"> + <os>Darwin 10</os> + <vendor>0x1002</vendor> + <feature>WEBGL_MSAA</feature> + <featureStatus>BLOCKED_DEVICE</featureStatus> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g1215"> + <os>WINNT 5.1</os> + <vendor>0x8086</vendor> + <feature>HARDWARE_VIDEO_DECODING</feature> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>10.18.10.3947</driverVersion> + <driverVersionComparator>EQUAL</driverVersionComparator> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g192"> + <os>WINNT 6.2</os> + <vendor>0x1002</vendor> + <feature>DIRECT2D</feature> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>9.10.8.0</driverVersion> + <driverVersionComparator>LESS_THAN_OR_EQUAL</driverVersionComparator> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g1221"> + <os>WINNT 10.0</os> + <vendor>0x8086</vendor> + <feature>HARDWARE_VIDEO_DECODING</feature> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>10.18.10.3947</driverVersion> + <driverVersionComparator>EQUAL</driverVersionComparator> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g150"> + <os>All</os> + <vendor>0x1002</vendor> + <feature>DIRECT3D_9_LAYERS</feature> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>8.982.0.0</driverVersion> + <driverVersionComparator>EQUAL</driverVersionComparator> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g36"> + <os>WINNT 6.1</os> + <vendor>0x10de</vendor> + <feature>DIRECT3D_9_LAYERS</feature> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>8.17.12.5896</driverVersion> + <driverVersionComparator>LESS_THAN_OR_EQUAL</driverVersionComparator> + <devices> + <device>0x0a6c</device> + </devices> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g1219"> + <os>WINNT 6.2</os> + <vendor>0x8086</vendor> + <feature>HARDWARE_VIDEO_DECODING</feature> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>10.18.10.3947</driverVersion> + <driverVersionComparator>EQUAL</driverVersionComparator> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g992"> + <os>WINNT 8.1</os> + <vendor>0x1002</vendor> + <feature>DIRECT2D</feature> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>15.201.1151.0</driverVersion> + <driverVersionComparator>LESS_THAN</driverVersionComparator> + <devices> + <device>0x6920</device> + <device>0x6921</device> + <device>0x6928</device> + <device>0x6929</device> + <device>0x692b</device> + <device>0x692f</device> + <device>0x6930</device> + <device>0x6938</device> + <device>0x6939</device> + <device>0x6900</device> + <device>0x6901</device> + <device>0x6902</device> + <device>0x6903</device> + <device>0x6907</device> + <device>0x7300</device> + <device>0x9870</device> + <device>0x9874</device> + <device>0x9875</device> + <device>0x9876</device> + <device>0x9877</device> + </devices> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g1218"> + <os>WINNT 6.1</os> + <vendor>0x8086</vendor> + <feature>HARDWARE_VIDEO_DECODING</feature> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>10.18.10.3947</driverVersion> + <driverVersionComparator>EQUAL</driverVersionComparator> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g1124"> + <os>All</os> + <vendor>0x8086</vendor> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>8.15.10.2086</driverVersion> + <driverVersionComparator>EQUAL</driverVersionComparator> + <devices> + <device>0x2a42</device> + <device>0x2e22</device> + <device>0x2e12</device> + <device>0x2e32</device> + <device>0x0046</device> + </devices> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g148"> + <os>All</os> + <vendor>0x1022</vendor> + <feature>DIRECT3D_9_LAYERS</feature> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>8.982.0.0</driverVersion> + <driverVersionComparator>EQUAL</driverVersionComparator> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g232"> + <os>Darwin 11</os> + <vendor>0x1002</vendor> + <feature>WEBGL_MSAA</feature> + <featureStatus>BLOCKED_DEVICE</featureStatus> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g206"> + <os>Darwin 11</os> + <vendor>0x8086</vendor> + <feature>WEBGL_MSAA</feature> + <featureStatus>BLOCKED_DEVICE</featureStatus> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g1069"> + <os>All</os> + <vendor>0x8086</vendor> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>8.15.10.1855</driverVersion> + <driverVersionComparator>EQUAL</driverVersionComparator> + <devices> + <device>0x2a42</device> + <device>0x2e22</device> + <device>0x2e12</device> + <device>0x2e32</device> + <device>0x0046</device> + </devices> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g280"> + <os>WINNT 6.1</os> + <vendor>0x1002</vendor> + <feature>DIRECT3D_9_LAYERS</feature> + <featureStatus>BLOCKED_DEVICE</featureStatus> + <devices> + <device>0x9802</device> + <device>0x9803</device> + <device>0x9803</device> + <device>0x9804</device> + <device>0x9805</device> + <device>0x9806</device> + <device>0x9807</device> + </devices> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g1217"> + <os>WINNT 6.0</os> + <vendor>0x8086</vendor> + <feature>HARDWARE_VIDEO_DECODING</feature> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>10.18.10.3947</driverVersion> + <driverVersionComparator>EQUAL</driverVersionComparator> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g202"> + <os>Darwin 12</os> + <vendor>0x10de</vendor> + <feature>WEBGL_MSAA</feature> + <featureStatus>BLOCKED_DEVICE</featureStatus> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g208"> + <os>Darwin 12</os> + <vendor>0x8086</vendor> + <feature>WEBGL_MSAA</feature> + <featureStatus>BLOCKED_DEVICE</featureStatus> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g200"> + <os>Darwin 11</os> + <vendor>0x10de</vendor> + <feature>WEBGL_MSAA</feature> + <featureStatus>BLOCKED_DEVICE</featureStatus> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g1068"> + <os>All</os> + <vendor>0x8086</vendor> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>8.15.10.1851</driverVersion> + <driverVersionComparator>EQUAL</driverVersionComparator> + <devices> + <device>0x2a42</device> + <device>0x2e22</device> + <device>0x2e12</device> + <device>0x2e32</device> + <device>0x0046</device> + </devices> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g278"> + <os>WINNT 6.1</os> + <vendor>0x1002</vendor> + <feature>DIRECT2D</feature> + <featureStatus>BLOCKED_DEVICE</featureStatus> + <devices> + <device>0x9802</device> + <device>0x9803</device> + <device>0x9803</device> + <device>0x9804</device> + <device>0x9805</device> + <device>0x9806</device> + <device>0x9807</device> + </devices> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g198"> + <os>Darwin 10</os> + <vendor>0x10de</vendor> + <feature>WEBGL_MSAA</feature> + <featureStatus>BLOCKED_DEVICE</featureStatus> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g1071"> + <os>All</os> + <vendor>0x8086</vendor> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>8.15.10.1883</driverVersion> + <driverVersionComparator>EQUAL</driverVersionComparator> + <devices> + <device>0x2a42</device> + <device>0x2e22</device> + <device>0x2e12</device> + <device>0x2e32</device> + <device>0x0046</device> + </devices> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g1072"> + <os>All</os> + <vendor>0x8086</vendor> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>8.15.10.1892</driverVersion> + <driverVersionComparator>EQUAL</driverVersionComparator> + <devices> + <device>0x2a42</device> + <device>0x2e22</device> + <device>0x2e12</device> + <device>0x2e32</device> + <device>0x0046</device> + </devices> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g146"> + <os>All</os> + <vendor>0x1022</vendor> + <feature>DIRECT2D</feature> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>8.982.0.0</driverVersion> + <driverVersionComparator>EQUAL</driverVersionComparator> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g1251"> + <os>WINNT 5.1</os> + <vendor>0x8086</vendor> + <feature>WEBGL_ANGLE</feature> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>6.14.10.5218</driverVersion> + <driverVersionComparator>LESS_THAN</driverVersionComparator> + <versionRange maxVersion="49.9"/> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g974"> + <os>WINNT 10.0</os> + <vendor>0x1002</vendor> + <feature>DIRECT2D</feature> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>15.201.1151.0</driverVersion> + <driverVersionComparator>LESS_THAN</driverVersionComparator> + <devices> + <device>0x6920</device> + <device>0x6921</device> + <device>0x6928</device> + <device>0x6929</device> + <device>0x692b</device> + <device>0x692f</device> + <device>0x6930</device> + <device>0x6938</device> + <device>0x6939</device> + <device>0x6900</device> + <device>0x6901</device> + <device>0x6902</device> + <device>0x6903</device> + <device>0x6907</device> + <device>0x7300</device> + <device>0x9870</device> + <device>0x9874</device> + <device>0x9875</device> + <device>0x9876</device> + <device>0x9877</device> + </devices> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g984"> + <os>All</os> + <vendor>0x8086</vendor> + <feature>DIRECT2D</feature> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>8.15.10.2413</driverVersion> + <driverVersionComparator>LESS_THAN_OR_EQUAL</driverVersionComparator> + </gfxBlacklistEntry> + <gfxBlacklistEntry blockID="g37"> + <os>WINNT 5.1</os> + <vendor>0x10de</vendor> + <feature>DIRECT3D_9_LAYERS</feature> + <featureStatus>BLOCKED_DRIVER_VERSION</featureStatus> + <driverVersion>7.0.0.0</driverVersion> + <driverVersionComparator>GREATER_THAN_OR_EQUAL</driverVersionComparator> + </gfxBlacklistEntry> + </gfxItems> +</blocklist> diff --git a/application/basilisk/app/macbuild/Contents/Info.plist.in b/application/basilisk/app/macbuild/Contents/Info.plist.in new file mode 100644 index 000000000..d6902fffd --- /dev/null +++ b/application/basilisk/app/macbuild/Contents/Info.plist.in @@ -0,0 +1,229 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>CFBundleDevelopmentRegion</key> + <string>English</string> + <key>CFBundleDocumentTypes</key> + <array> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>html</string> + <string>htm</string> + <string>shtml</string> + <string>xht</string> + <string>xhtml</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>document.icns</string> + <key>CFBundleTypeName</key> + <string>HTML Document</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>HTML</string> + </array> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>svg</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>document.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>image/svg+xml</string> + </array> + <key>CFBundleTypeName</key> + <string>SVG document</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>TEXT</string> + </array> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + <key>NSDocumentClass</key> + <string>BrowserDocument</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>text</string> + <string>txt</string> + <string>js</string> + <string>log</string> + <string>css</string> + <string>xul</string> + <string>rdf</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>document.icns</string> + <key>CFBundleTypeName</key> + <string>Text Document</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>TEXT</string> + <string>utxt</string> + </array> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>jpeg</string> + <string>jpg</string> + <string>png</string> + <string>gif</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>fileBookmark.icns</string> + <key>CFBundleTypeName</key> + <string>document.icns</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>GIFf</string> + <string>JPEG</string> + <string>PNGf</string> + </array> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>oga</string> + <string>ogg</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>document.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>audio/ogg</string> + </array> + <key>CFBundleTypeName</key> + <string>HTML5 Audio (Ogg)</string> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>ogv</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>document.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>video/ogg</string> + </array> + <key>CFBundleTypeName</key> + <string>HTML5 Video (Ogg)</string> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>webm</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>document.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>video/webm</string> + </array> + <key>CFBundleTypeName</key> + <string>HTML5 Video (WebM)</string> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + </dict> + </array> + <key>CFBundleExecutable</key> + <string>firefox</string> + <key>CFBundleGetInfoString</key> + <string>%MAC_APP_NAME% %APP_VERSION%</string> + <key>CFBundleIconFile</key> + <string>firefox.icns</string> + <key>CFBundleIdentifier</key> + <string>%MOZ_MACBUNDLE_ID%</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>%MAC_APP_NAME%</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleShortVersionString</key> + <string>%APP_VERSION%</string> + <key>CFBundleSignature</key> + <string>MOZB</string> + <key>CFBundleURLTypes</key> + <array> + <dict> + <key>CFBundleURLIconFile</key> + <string>document.icns</string> + <key>CFBundleURLName</key> + <string>http URL</string> + <key>CFBundleURLSchemes</key> + <array> + <string>http</string> + </array> + </dict> + <dict> + <key>CFBundleURLIconFile</key> + <string>document.icns</string> + <key>CFBundleURLName</key> + <string>https URL</string> + <key>CFBundleURLSchemes</key> + <array> + <string>https</string> + </array> + </dict> + <dict> + <key>CFBundleURLName</key> + <string>ftp URL</string> + <key>CFBundleURLSchemes</key> + <array> + <string>ftp</string> + </array> + </dict> + <dict> + <key>CFBundleURLName</key> + <string>file URL</string> + <key>CFBundleURLSchemes</key> + <array> + <string>file</string> + </array> + </dict> + </array> + <key>CFBundleVersion</key> + <string>%MAC_BUNDLE_VERSION%</string> + <key>NSAppleScriptEnabled</key> + <true/> + <key>LSApplicationCategoryType</key> + <string>public.app-category.productivity</string> + <key>LSEnvironment</key> + <dict> + <key>MallocNanoZone</key> + <string>0</string> + </dict> + <key>LSFileQuarantineEnabled</key> + <true/> + <key>LSMinimumSystemVersion</key> + <string>10.9.0</string> + <key>NSSupportsAutomaticGraphicsSwitching</key> + <true/> + <key>NSPrincipalClass</key> + <string>GeckoNSApplication</string> + <key>SMPrivilegedExecutables</key> + <dict> + <key>org.mozilla.updater</key> + <string>identifier "org.mozilla.updater" and ((anchor apple generic and certificate leaf[field.1.2.840.113635.100.6.1.9]) or (anchor apple generic and certificate 1[field.1.2.840.113635.100.6.2.6] and certificate leaf[field.1.2.840.113635.100.6.1.13] and certificate leaf[subject.OU] = "43AQ936H96"))</string> + </dict> + <key>NSDisablePersistence</key> + <true/> +</dict> +</plist> diff --git a/application/basilisk/app/macbuild/Contents/MacOS-files.in b/application/basilisk/app/macbuild/Contents/MacOS-files.in new file mode 100644 index 000000000..849336bc9 --- /dev/null +++ b/application/basilisk/app/macbuild/Contents/MacOS-files.in @@ -0,0 +1,9 @@ +/*.app/*** +/*.dylib +/certutil +/firefox-bin +/gtest/*** +/pk12util +/ssltunnel +/xpcshell +/XUL diff --git a/application/basilisk/app/macbuild/Contents/Resources/English.lproj/InfoPlist.strings.in b/application/basilisk/app/macbuild/Contents/Resources/English.lproj/InfoPlist.strings.in new file mode 100644 index 000000000..74d192cb0 --- /dev/null +++ b/application/basilisk/app/macbuild/Contents/Resources/English.lproj/InfoPlist.strings.in @@ -0,0 +1,5 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +CFBundleName = "%MAC_APP_NAME%"; diff --git a/application/basilisk/app/macversion.py b/application/basilisk/app/macversion.py new file mode 100644 index 000000000..839aac1ff --- /dev/null +++ b/application/basilisk/app/macversion.py @@ -0,0 +1,44 @@ +#!/usr/bin/python +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + + +from optparse import OptionParser +import sys +import re + +o = OptionParser() +o.add_option("--buildid", dest="buildid") +o.add_option("--version", dest="version") + +(options, args) = o.parse_args() + +if not options.buildid: + print >>sys.stderr, "--buildid is required" + sys.exit(1) + +if not options.version: + print >>sys.stderr, "--version is required" + sys.exit(1) + +# We want to build a version number that matches the format allowed for +# CFBundleVersion (nnnnn[.nn[.nn]]). We'll incorporate both the version +# number as well as the date, so that it changes at least daily (for nightly +# builds), but also so that newly-built older versions (e.g. beta build) aren't +# considered "newer" than previously-built newer versions (e.g. a trunk nightly) + +define, MOZ_BUILDID, buildid = open(options.buildid, 'r').read().split() + +# extract only the major version (i.e. "14" from "14.0b1") +majorVersion = re.match(r'^(\d+)[^\d].*', options.version).group(1) +# last two digits of the year +twodigityear = buildid[2:4] +month = buildid[4:6] +if month[0] == '0': + month = month[1] +day = buildid[6:8] +if day[0] == '0': + day = day[1] + +print '%s.%s.%s' % (majorVersion + twodigityear, month, day) diff --git a/application/basilisk/app/module.ver b/application/basilisk/app/module.ver new file mode 100644 index 000000000..0373ff96d --- /dev/null +++ b/application/basilisk/app/module.ver @@ -0,0 +1,8 @@ +WIN32_MODULE_COMPANYNAME=Moonchild Productions +WIN32_MODULE_COPYRIGHT=©Basilisk and Mozilla Developers; available under the MPL 2 license. +WIN32_MODULE_PRODUCTVERSION=@MOZ_APP_WINVERSION@ +WIN32_MODULE_PRODUCTVERSION_STRING=@MOZ_APP_VERSION@ +WIN32_MODULE_TRADEMARKS=Basilisk is a Trademark of Moonchild Productions. +WIN32_MODULE_DESCRIPTION=@MOZ_APP_DISPLAYNAME@ +WIN32_MODULE_PRODUCTNAME=@MOZ_APP_DISPLAYNAME@ +WIN32_MODULE_NAME=@MOZ_APP_DISPLAYNAME@ diff --git a/application/basilisk/app/moz.build b/application/basilisk/app/moz.build new file mode 100644 index 000000000..1004e280c --- /dev/null +++ b/application/basilisk/app/moz.build @@ -0,0 +1,75 @@ +# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- +# vim: set filetype=python: +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +DIRS += ['profile/extensions'] + +GeckoProgram(CONFIG['MOZ_APP_NAME']) + +JS_PREFERENCE_PP_FILES += [ + 'profile/firefox.js', +] + +SOURCES += [ + 'nsBrowserApp.cpp', +] + +FINAL_TARGET_FILES += ['blocklist.xml'] +FINAL_TARGET_FILES.defaults.profile += ['profile/prefs.js'] +FINAL_TARGET_FILES.defaults += ['permissions'] + +DEFINES['APP_VERSION'] = CONFIG['MOZ_APP_VERSION'] + +LOCAL_INCLUDES += [ + '!/build', + '/toolkit/xre', + '/xpcom/base', + '/xpcom/build', +] + +USE_LIBS += [ + 'mozglue', +] + +if CONFIG['LIBFUZZER']: + USE_LIBS += [ 'fuzzer' ] + +if CONFIG['_MSC_VER']: + # Always enter a Windows program through wmain, whether or not we're + # a console application. + WIN32_EXE_LDFLAGS += ['-ENTRY:wmainCRTStartup'] + +if CONFIG['OS_ARCH'] == 'WINNT': + RCINCLUDE = 'splash.rc' + DEFINES['MOZ_PHOENIX'] = True + +for cdm in CONFIG['MOZ_EME_MODULES']: + DEFINES['MOZ_%s_EME' % cdm.upper()] = True + +# Control the default heap size. +# This is the heap returned by GetProcessHeap(). +# As we use the CRT heap, the default size is too large and wastes VM. +# +# The default heap size is 1MB on Win32. +# The heap will grow if need be. +# +# Set it to 256k. See bug 127069. +if CONFIG['OS_ARCH'] == 'WINNT' and not CONFIG['GNU_CC']: + LDFLAGS += ['/HEAP:0x40000'] + +DISABLE_STL_WRAPPING = True + +if CONFIG['MOZ_LINKER']: + OS_LIBS += CONFIG['MOZ_ZLIB_LIBS'] + +if CONFIG['HAVE_CLOCK_MONOTONIC']: + OS_LIBS += CONFIG['REALTIME_LIBS'] + +if CONFIG['MOZ_GPSD']: + DEFINES['MOZ_GPSD'] = True + +for icon in ('firefox', 'document', 'newwindow', 'newtab', 'pbmode'): + DEFINES[icon.upper() + '_ICO'] = '"%s/dist/branding/%s.ico"' % ( + TOPOBJDIR, icon) diff --git a/application/basilisk/app/nsBrowserApp.cpp b/application/basilisk/app/nsBrowserApp.cpp new file mode 100644 index 000000000..66ea8aed5 --- /dev/null +++ b/application/basilisk/app/nsBrowserApp.cpp @@ -0,0 +1,393 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "nsXULAppAPI.h" +#include "mozilla/AppData.h" +#include "application.ini.h" +#include "nsXPCOMGlue.h" +#if defined(XP_WIN) +#include <windows.h> +#include <stdlib.h> +#elif defined(XP_UNIX) +#include <sys/resource.h> +#include <unistd.h> +#endif + +#include <stdio.h> +#include <stdarg.h> +#include <time.h> + +#include "nsCOMPtr.h" +#include "nsIFile.h" +#include "nsStringGlue.h" + +#ifdef XP_WIN +#define XRE_WANT_ENVIRON +#define strcasecmp _stricmp +#endif +#include "BinaryPath.h" + +#include "nsXPCOMPrivate.h" // for MAXPATHLEN and XPCOM_DLL + +#include "mozilla/Sprintf.h" +#include "mozilla/Telemetry.h" +#include "mozilla/WindowsDllBlocklist.h" + +#if !defined(MOZ_WIDGET_COCOA) && !defined(MOZ_WIDGET_ANDROID) +#define MOZ_BROWSER_CAN_BE_CONTENTPROC +#include "../../ipc/contentproc/plugin-container.cpp" +#endif + +using namespace mozilla; + +#ifdef XP_MACOSX +#define kOSXResourcesFolder "Resources" +#endif +#define kDesktopFolder "browser" + +static void Output(const char *fmt, ... ) +{ + va_list ap; + va_start(ap, fmt); + +#ifndef XP_WIN + vfprintf(stderr, fmt, ap); +#else + char msg[2048]; + vsnprintf_s(msg, _countof(msg), _TRUNCATE, fmt, ap); + + wchar_t wide_msg[2048]; + MultiByteToWideChar(CP_UTF8, + 0, + msg, + -1, + wide_msg, + _countof(wide_msg)); +#if MOZ_WINCONSOLE + fwprintf_s(stderr, wide_msg); +#else + // Linking user32 at load-time interferes with the DLL blocklist (bug 932100). + // This is a rare codepath, so we can load user32 at run-time instead. + HMODULE user32 = LoadLibraryW(L"user32.dll"); + if (user32) { + decltype(MessageBoxW)* messageBoxW = + (decltype(MessageBoxW)*) GetProcAddress(user32, "MessageBoxW"); + if (messageBoxW) { + messageBoxW(nullptr, wide_msg, L"Basilisk", MB_OK + | MB_ICONERROR + | MB_SETFOREGROUND); + } + FreeLibrary(user32); + } +#endif +#endif + + va_end(ap); +} + +/** + * Return true if |arg| matches the given argument name. + */ +static bool IsArg(const char* arg, const char* s) +{ + if (*arg == '-') + { + if (*++arg == '-') + ++arg; + return !strcasecmp(arg, s); + } + +#if defined(XP_WIN) + if (*arg == '/') + return !strcasecmp(++arg, s); +#endif + + return false; +} + +XRE_GetFileFromPathType XRE_GetFileFromPath; +XRE_CreateAppDataType XRE_CreateAppData; +XRE_FreeAppDataType XRE_FreeAppData; +XRE_TelemetryAccumulateType XRE_TelemetryAccumulate; +XRE_StartupTimelineRecordType XRE_StartupTimelineRecord; +XRE_mainType XRE_main; +XRE_StopLateWriteChecksType XRE_StopLateWriteChecks; +XRE_XPCShellMainType XRE_XPCShellMain; +XRE_GetProcessTypeType XRE_GetProcessType; +XRE_SetProcessTypeType XRE_SetProcessType; +XRE_InitChildProcessType XRE_InitChildProcess; +XRE_EnableSameExecutableForContentProcType XRE_EnableSameExecutableForContentProc; +#ifdef LIBFUZZER +XRE_LibFuzzerSetMainType XRE_LibFuzzerSetMain; +XRE_LibFuzzerGetFuncsType XRE_LibFuzzerGetFuncs; +#endif + +static const nsDynamicFunctionLoad kXULFuncs[] = { + { "XRE_GetFileFromPath", (NSFuncPtr*) &XRE_GetFileFromPath }, + { "XRE_CreateAppData", (NSFuncPtr*) &XRE_CreateAppData }, + { "XRE_FreeAppData", (NSFuncPtr*) &XRE_FreeAppData }, + { "XRE_TelemetryAccumulate", (NSFuncPtr*) &XRE_TelemetryAccumulate }, + { "XRE_StartupTimelineRecord", (NSFuncPtr*) &XRE_StartupTimelineRecord }, + { "XRE_main", (NSFuncPtr*) &XRE_main }, + { "XRE_StopLateWriteChecks", (NSFuncPtr*) &XRE_StopLateWriteChecks }, + { "XRE_XPCShellMain", (NSFuncPtr*) &XRE_XPCShellMain }, + { "XRE_GetProcessType", (NSFuncPtr*) &XRE_GetProcessType }, + { "XRE_SetProcessType", (NSFuncPtr*) &XRE_SetProcessType }, + { "XRE_InitChildProcess", (NSFuncPtr*) &XRE_InitChildProcess }, + { "XRE_EnableSameExecutableForContentProc", (NSFuncPtr*) &XRE_EnableSameExecutableForContentProc }, +#ifdef LIBFUZZER + { "XRE_LibFuzzerSetMain", (NSFuncPtr*) &XRE_LibFuzzerSetMain }, + { "XRE_LibFuzzerGetFuncs", (NSFuncPtr*) &XRE_LibFuzzerGetFuncs }, +#endif + { nullptr, nullptr } +}; + +#ifdef LIBFUZZER +int libfuzzer_main(int argc, char **argv); + +/* This wrapper is used by the libFuzzer main to call into libxul */ + +void libFuzzerGetFuncs(const char* moduleName, LibFuzzerInitFunc* initFunc, + LibFuzzerTestingFunc* testingFunc) { + return XRE_LibFuzzerGetFuncs(moduleName, initFunc, testingFunc); +} +#endif + +static int do_main(int argc, char* argv[], char* envp[], nsIFile *xreDirectory) +{ + nsCOMPtr<nsIFile> appini; + nsresult rv; + uint32_t mainFlags = 0; + + // Allow basilisk.exe to launch XULRunner apps via -app <application.ini> + // Note that -app must be the *first* argument. + const char *appDataFile = getenv("XUL_APP_FILE"); + if (appDataFile && *appDataFile) { + rv = XRE_GetFileFromPath(appDataFile, getter_AddRefs(appini)); + if (NS_FAILED(rv)) { + Output("Invalid path found: '%s'", appDataFile); + return 255; + } + } + else if (argc > 1 && IsArg(argv[1], "app")) { + if (argc == 2) { + Output("Incorrect number of arguments passed to -app"); + return 255; + } + + rv = XRE_GetFileFromPath(argv[2], getter_AddRefs(appini)); + if (NS_FAILED(rv)) { + Output("application.ini path not recognized: '%s'", argv[2]); + return 255; + } + + char appEnv[MAXPATHLEN]; + SprintfLiteral(appEnv, "XUL_APP_FILE=%s", argv[2]); + if (putenv(strdup(appEnv))) { + Output("Couldn't set %s.\n", appEnv); + return 255; + } + argv[2] = argv[0]; + argv += 2; + argc -= 2; + } else if (argc > 1 && IsArg(argv[1], "xpcshell")) { + for (int i = 1; i < argc; i++) { + argv[i] = argv[i + 1]; + } + + return XRE_XPCShellMain(--argc, argv, envp); + } + + if (appini) { + nsXREAppData *appData; + rv = XRE_CreateAppData(appini, &appData); + if (NS_FAILED(rv)) { + Output("Couldn't read application.ini"); + return 255; + } +#if defined(HAS_DLL_BLOCKLIST) + // The dll blocklist operates in the exe vs. xullib. Pass a flag to + // xullib so automated tests can check the result once the browser + // is up and running. + appData->flags |= + DllBlocklist_CheckStatus() ? NS_XRE_DLL_BLOCKLIST_ENABLED : 0; +#endif + // xreDirectory already has a refcount from NS_NewLocalFile + appData->xreDirectory = xreDirectory; + int result = XRE_main(argc, argv, appData, mainFlags); + XRE_FreeAppData(appData); + return result; + } + + ScopedAppData appData(&sAppData); + nsCOMPtr<nsIFile> exeFile; + rv = mozilla::BinaryPath::GetFile(argv[0], getter_AddRefs(exeFile)); + if (NS_FAILED(rv)) { + Output("Couldn't find the application directory.\n"); + return 255; + } + + nsCOMPtr<nsIFile> greDir; + exeFile->GetParent(getter_AddRefs(greDir)); +#ifdef XP_MACOSX + greDir->SetNativeLeafName(NS_LITERAL_CSTRING(kOSXResourcesFolder)); +#endif + nsCOMPtr<nsIFile> appSubdir; + greDir->Clone(getter_AddRefs(appSubdir)); + appSubdir->Append(NS_LITERAL_STRING(kDesktopFolder)); + + SetStrongPtr(appData.directory, static_cast<nsIFile*>(appSubdir.get())); + // xreDirectory already has a refcount from NS_NewLocalFile + appData.xreDirectory = xreDirectory; + +#if defined(HAS_DLL_BLOCKLIST) + appData.flags |= + DllBlocklist_CheckStatus() ? NS_XRE_DLL_BLOCKLIST_ENABLED : 0; +#endif + +#ifdef LIBFUZZER + if (getenv("LIBFUZZER")) + XRE_LibFuzzerSetMain(argc, argv, libfuzzer_main); +#endif + + return XRE_main(argc, argv, &appData, mainFlags); +} + +static bool +FileExists(const char *path) +{ +#ifdef XP_WIN + wchar_t wideDir[MAX_PATH]; + MultiByteToWideChar(CP_UTF8, 0, path, -1, wideDir, MAX_PATH); + DWORD fileAttrs = GetFileAttributesW(wideDir); + return fileAttrs != INVALID_FILE_ATTRIBUTES; +#else + return access(path, R_OK) == 0; +#endif +} + +static nsresult +InitXPCOMGlue(const char *argv0, nsIFile **xreDirectory) +{ + char exePath[MAXPATHLEN]; + + nsresult rv = mozilla::BinaryPath::Get(argv0, exePath); + if (NS_FAILED(rv)) { + Output("Couldn't find the application directory.\n"); + return rv; + } + + char *lastSlash = strrchr(exePath, XPCOM_FILE_PATH_SEPARATOR[0]); + if (!lastSlash || + (size_t(lastSlash - exePath) > MAXPATHLEN - sizeof(XPCOM_DLL) - 1)) + return NS_ERROR_FAILURE; + + strcpy(lastSlash + 1, XPCOM_DLL); + + if (!FileExists(exePath)) { + Output("Could not find the Mozilla runtime.\n"); + return NS_ERROR_FAILURE; + } + + // We do this because of data in bug 771745 + XPCOMGlueEnablePreload(); + + rv = XPCOMGlueStartup(exePath); + if (NS_FAILED(rv)) { + Output("Couldn't load XPCOM.\n"); + return rv; + } + + rv = XPCOMGlueLoadXULFunctions(kXULFuncs); + if (NS_FAILED(rv)) { + Output("Couldn't load XRE functions.\n"); + return rv; + } + + // This will set this thread as the main thread. + NS_LogInit(); + + if (xreDirectory) { + // chop XPCOM_DLL off exePath + *lastSlash = '\0'; +#ifdef XP_MACOSX + lastSlash = strrchr(exePath, XPCOM_FILE_PATH_SEPARATOR[0]); + strcpy(lastSlash + 1, kOSXResourcesFolder); +#endif +#ifdef XP_WIN + rv = NS_NewLocalFile(NS_ConvertUTF8toUTF16(exePath), false, + xreDirectory); +#else + rv = NS_NewNativeLocalFile(nsDependentCString(exePath), false, + xreDirectory); +#endif + } + + return rv; +} + +int main(int argc, char* argv[], char* envp[]) +{ + mozilla::TimeStamp start = mozilla::TimeStamp::Now(); + +#ifdef HAS_DLL_BLOCKLIST + DllBlocklist_Initialize(); + +#ifdef DEBUG + // In order to be effective against AppInit DLLs, the blocklist must be + // initialized before user32.dll is loaded into the process (bug 932100). + if (GetModuleHandleA("user32.dll")) { + fprintf(stderr, "DLL blocklist was unable to intercept AppInit DLLs.\n"); + } +#endif +#endif + +#ifdef MOZ_BROWSER_CAN_BE_CONTENTPROC + // We are launching as a content process, delegate to the appropriate + // main + if (argc > 1 && IsArg(argv[1], "contentproc")) { + nsresult rv = InitXPCOMGlue(argv[0], nullptr); + if (NS_FAILED(rv)) { + return 255; + } + + int result = content_process_main(argc, argv); + + // InitXPCOMGlue calls NS_LogInit, so we need to balance it here. + NS_LogTerm(); + + return result; + } +#endif + + + nsIFile *xreDirectory; + + nsresult rv = InitXPCOMGlue(argv[0], &xreDirectory); + if (NS_FAILED(rv)) { + return 255; + } + + XRE_StartupTimelineRecord(mozilla::StartupTimeline::START, start); + +#ifdef MOZ_BROWSER_CAN_BE_CONTENTPROC + XRE_EnableSameExecutableForContentProc(); +#endif + + int result = do_main(argc, argv, envp, xreDirectory); + + NS_LogTerm(); + +#ifdef XP_MACOSX + // Allow writes again. While we would like to catch writes from static + // destructors to allow early exits to use _exit, we know that there is + // at least one such write that we don't control (see bug 826029). For + // now we enable writes again and early exits will have to use exit instead + // of _exit. + XRE_StopLateWriteChecks(); +#endif + + return result; +} diff --git a/application/basilisk/app/permissions b/application/basilisk/app/permissions new file mode 100644 index 000000000..cf0aa22fb --- /dev/null +++ b/application/basilisk/app/permissions @@ -0,0 +1,15 @@ +# This file has default permissions for the permission manager.
+# The file-format is strict:
+# * matchtype \t type \t permission \t host
+# * "origin" should be used for matchtype, "host" is supported for legacy reasons
+# * type is a string that identifies the type of permission (e.g. "cookie")
+# * permission is an integer between 1 and 15
+# See nsPermissionManager.cpp for more...
+
+# XPInstall
+origin install 1 https://addons.mozilla.org
+origin install 1 https://testpilot.firefox.com
+
+# Remote troubleshooting
+origin remote-troubleshooting 1 https://input.mozilla.org
+origin remote-troubleshooting 1 https://support.mozilla.org
diff --git a/application/basilisk/app/profile/channel-prefs.js b/application/basilisk/app/profile/channel-prefs.js new file mode 100644 index 000000000..633c489f3 --- /dev/null +++ b/application/basilisk/app/profile/channel-prefs.js @@ -0,0 +1,5 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +pref("app.update.channel", "@MOZ_UPDATE_CHANNEL@"); diff --git a/application/basilisk/app/profile/extensions/moz.build b/application/basilisk/app/profile/extensions/moz.build new file mode 100644 index 000000000..bb02c9165 --- /dev/null +++ b/application/basilisk/app/profile/extensions/moz.build @@ -0,0 +1,7 @@ +# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- +# vim: set filetype=python: +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +DIRS += ['{972ce4c6-7e08-4474-a285-3208198ce6fd}'] diff --git a/application/basilisk/app/profile/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/install.rdf.in b/application/basilisk/app/profile/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/install.rdf.in new file mode 100644 index 000000000..a2cb9754d --- /dev/null +++ b/application/basilisk/app/profile/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/install.rdf.in @@ -0,0 +1,40 @@ +<?xml version="1.0"?> +<!-- This Source Code Form is subject to the terms of the Mozilla Public + - License, v. 2.0. If a copy of the MPL was not distributed with this + - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> + + +#filter substitution + +<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:em="http://www.mozilla.org/2004/em-rdf#"> + + <Description about="urn:mozilla:install-manifest"> + <em:id>{972ce4c6-7e08-4474-a285-3208198ce6fd}</em:id> + <em:version>@MOZ_APP_VERSION@</em:version> + + <!-- Target Application this theme can install into, + with minimum and maximum supported versions. --> + <em:targetApplication> + <Description> + <em:id>@MOZ_APP_ID@</em:id> + <em:minVersion>@MOZ_APP_VERSION@</em:minVersion> + <em:maxVersion>@MOZ_APP_VERSION@</em:maxVersion> + </Description> + </em:targetApplication> + + <!-- Front End MetaData --> + <em:name>Default</em:name> + <em:description>The default theme.</em:description> + + <!-- Front End Integration Hooks (used by Theme Manager)--> + <em:creator>Mozilla</em:creator> + <em:contributor>Mozilla Contributors</em:contributor> + + <!-- Allow lightweight themes to apply to this theme --> + <em:skinnable>true</em:skinnable> + + <em:internalName>classic/1.0</em:internalName> + </Description> + +</RDF> diff --git a/application/basilisk/app/profile/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/moz.build b/application/basilisk/app/profile/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/moz.build new file mode 100644 index 000000000..f8c2a5c4b --- /dev/null +++ b/application/basilisk/app/profile/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/moz.build @@ -0,0 +1,14 @@ +# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- +# vim: set filetype=python: +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +DEFINES['MOZ_APP_VERSION'] = CONFIG['MOZ_APP_VERSION'] +DEFINES['MOZ_APP_ID'] = CONFIG['MOZ_APP_ID'] + +FINAL_TARGET = 'dist/bin/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}' + +FINAL_TARGET_PP_FILES += [ + 'install.rdf.in', +] diff --git a/application/basilisk/app/profile/firefox.js b/application/basilisk/app/profile/firefox.js new file mode 100644 index 000000000..2babde3b0 --- /dev/null +++ b/application/basilisk/app/profile/firefox.js @@ -0,0 +1,1435 @@ +# -*- indent-tabs-mode: nil; js-indent-level: 2 -*- +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +// XXX Toolkit-specific preferences should be moved into toolkit.js + +#filter substitution + +# +# SYNTAX HINTS: +# +# - Dashes are delimiters; use underscores instead. +# - The first character after a period must be alphabetic. +# - Computed values (e.g. 50 * 1024) don't work. +# + +#ifdef XP_UNIX +#ifndef XP_MACOSX +#define UNIX_BUT_NOT_MAC +#endif +#endif + +pref("browser.chromeURL","chrome://browser/content/"); +pref("browser.hiddenWindowChromeURL", "chrome://browser/content/hiddenWindow.xul"); + +// Enables some extra Extension System Logging (can reduce performance) +pref("extensions.logging.enabled", false); + +// Disables strict compatibility, making addons compatible-by-default. +pref("extensions.strictCompatibility", false); + +// Specifies a minimum maxVersion an addon needs to say it's compatible with +// for it to be compatible by default. +pref("extensions.minCompatibleAppVersion", "4.0"); +// Temporary preference to forcibly make themes more safe with Australis even if +// extensions.checkCompatibility=false has been set. +pref("extensions.checkCompatibility.temporaryThemeOverride_minAppVersion", "29.0a1"); + +pref("xpinstall.customConfirmationUI", true); + +// Preferences for AMO integration +pref("extensions.getAddons.cache.enabled", false); +pref("extensions.getAddons.maxResults", 15); +pref("extensions.getAddons.get.url", "https://services.addons.mozilla.org/%LOCALE%/firefox/api/%API_VERSION%/search/guid:%IDS%?src=firefox&appOS=%OS%&appVersion=%VERSION%"); +pref("extensions.getAddons.getWithPerformance.url", "https://services.addons.mozilla.org/%LOCALE%/firefox/api/%API_VERSION%/search/guid:%IDS%?src=firefox&appOS=%OS%&appVersion=%VERSION%&tMain=%TIME_MAIN%&tFirstPaint=%TIME_FIRST_PAINT%&tSessionRestored=%TIME_SESSION_RESTORED%"); +pref("extensions.getAddons.search.browseURL", "https://addons.mozilla.org/%LOCALE%/firefox/search?q=%TERMS%&platform=%OS%&appver=%VERSION%"); +pref("extensions.getAddons.search.url", "https://services.addons.mozilla.org/%LOCALE%/firefox/api/%API_VERSION%/search/%TERMS%/all/%MAX_RESULTS%/%OS%/%VERSION%/%COMPATIBILITY_MODE%?src=firefox"); +pref("extensions.webservice.discoverURL", "https://discovery.addons.mozilla.org/%LOCALE%/firefox/discovery/pane/%VERSION%/%OS%/%COMPATIBILITY_MODE%"); +pref("extensions.getAddons.recommended.url", "https://services.addons.mozilla.org/%LOCALE%/%APP%/api/%API_VERSION%/list/recommended/all/%MAX_RESULTS%/%OS%/%VERSION%?src=firefox"); +pref("extensions.getAddons.link.url", "https://addons.mozilla.org/%LOCALE%/firefox/"); + +pref("extensions.update.autoUpdateDefault", true); + +pref("extensions.hotfix.id", "firefox-hotfix@mozilla.org"); +pref("extensions.hotfix.cert.checkAttributes", true); +pref("extensions.hotfix.certs.1.sha1Fingerprint", "91:53:98:0C:C1:86:DF:47:8F:35:22:9E:11:C9:A7:31:04:49:A1:AA"); +pref("extensions.hotfix.certs.2.sha1Fingerprint", "39:E7:2B:7A:5B:CF:37:78:F9:5D:4A:E0:53:2D:2F:3D:68:53:C5:60"); + +// Check AUS for system add-on updates. +pref("extensions.systemAddon.update.url", "https://aus5.mozilla.org/update/3/SystemAddons/%VERSION%/%BUILD_ID%/%BUILD_TARGET%/%LOCALE%/%CHANNEL%/%OS_VERSION%/%DISTRIBUTION%/%DISTRIBUTION_VERSION%/update.xml"); + +// Disable add-ons that are not installed by the user in all scopes by default. +// See the SCOPE constants in AddonManager.jsm for values to use here. +pref("extensions.autoDisableScopes", 15); + +// Add-on content security policies. +pref("extensions.webextensions.base-content-security-policy", "script-src 'self' https://* moz-extension: blob: filesystem: 'unsafe-eval' 'unsafe-inline'; object-src 'self' https://* moz-extension: blob: filesystem:;"); +pref("extensions.webextensions.default-content-security-policy", "script-src 'self'; object-src 'self';"); + +// Require signed add-ons by default +pref("xpinstall.signatures.required", true); +pref("xpinstall.signatures.devInfoURL", "https://wiki.mozilla.org/Addons/Extension_Signing"); + +// Dictionary download preference +pref("browser.dictionaries.download.url", "https://addons.mozilla.org/%LOCALE%/firefox/dictionaries/"); + +// At startup, should we check to see if the installation +// date is older than some threshold +pref("app.update.checkInstallTime", true); + +// The number of days a binary is permitted to be old without checking is defined in +// firefox-branding.js (app.update.checkInstallTime.days) + +// The minimum delay in seconds for the timer to fire between the notification +// of each consumer of the timer manager. +// minimum=30 seconds, default=120 seconds, and maximum=300 seconds +pref("app.update.timerMinimumDelay", 120); + +// The minimum delay in milliseconds for the first firing after startup of the timer +// to notify consumers of the timer manager. +// minimum=10 seconds, default=30 seconds, and maximum=120 seconds +pref("app.update.timerFirstInterval", 30000); + +// App-specific update preferences + +// The interval to check for updates (app.update.interval) is defined in +// firefox-branding.js + +// Alternative windowtype for an application update user interface window. When +// a window with this windowtype is open the application update service won't +// open the normal application update user interface window. +pref("app.update.altwindowtype", "Browser:About"); + +// Enables some extra Application Update Logging (can reduce performance) +pref("app.update.log", false); + +// The number of general background check failures to allow before notifying the +// user of the failure. User initiated update checks always notify the user of +// the failure. +pref("app.update.backgroundMaxErrors", 10); + +// Whether or not app updates are enabled +pref("app.update.enabled", true); + +// If set to true, the Update Service will automatically download updates when +// app updates are enabled per the app.update.enabled preference and if the user +// can apply updates. +pref("app.update.auto", true); + +// If set to true, the Update Service will present no UI for any event. +pref("app.update.silent", false); + +// If set to true, the hamburger button will show badges for update events. +#ifndef RELEASE_OR_BETA +pref("app.update.badge", true); +#else +pref("app.update.badge", false); +#endif +// app.update.badgeWaitTime is in branding section + +// If set to true, the Update Service will apply updates in the background +// when it finishes downloading them. +pref("app.update.staging.enabled", true); + +// Update service URL: +pref("app.update.url", "https://aus5.mozilla.org/update/6/%PRODUCT%/%VERSION%/%BUILD_ID%/%BUILD_TARGET%/%LOCALE%/%CHANNEL%/%OS_VERSION%/%SYSTEM_CAPABILITIES%/%DISTRIBUTION%/%DISTRIBUTION_VERSION%/update.xml"); +// app.update.url.manual is in branding section +// app.update.url.details is in branding section + +// app.update.interval is in branding section +// app.update.promptWaitTime is in branding section + +// Show the Update Checking/Ready UI when the user was idle for x seconds +pref("app.update.idletime", 60); + +// Whether or not to attempt using the service for updates. +#ifdef MOZ_MAINTENANCE_SERVICE +pref("app.update.service.enabled", true); +#endif + +// Symmetric (can be overridden by individual extensions) update preferences. +// e.g. +// extensions.{GUID}.update.enabled +// extensions.{GUID}.update.url +// .. etc .. +// +pref("extensions.update.enabled", true); +pref("extensions.update.url", "https://versioncheck.addons.mozilla.org/update/VersionCheck.php?reqVersion=%REQ_VERSION%&id=%ITEM_ID%&version=%ITEM_VERSION%&maxAppVersion=%ITEM_MAXAPPVERSION%&status=%ITEM_STATUS%&appID=%APP_ID%&appVersion=52.9&appOS=%APP_OS%&appABI=%APP_ABI%&locale=%APP_LOCALE%¤tAppVersion=%CURRENT_APP_VERSION%&updateType=%UPDATE_TYPE%&compatMode=%COMPATIBILITY_MODE%"); +pref("extensions.update.background.url", "https://versioncheck-bg.addons.mozilla.org/update/VersionCheck.php?reqVersion=%REQ_VERSION%&id=%ITEM_ID%&version=%ITEM_VERSION%&maxAppVersion=%ITEM_MAXAPPVERSION%&status=%ITEM_STATUS%&appID=%APP_ID%&appVersion=52.9&appOS=%APP_OS%&appABI=%APP_ABI%&locale=%APP_LOCALE%¤tAppVersion=%CURRENT_APP_VERSION%&updateType=%UPDATE_TYPE%&compatMode=%COMPATIBILITY_MODE%"); +pref("extensions.update.interval", 86400); // Check for updates to Extensions and + // Themes every day +// Non-symmetric (not shared by extensions) extension-specific [update] preferences +pref("extensions.dss.enabled", false); // Dynamic Skin Switching +pref("extensions.dss.switchPending", false); // Non-dynamic switch pending after next + // restart. + +pref("extensions.{972ce4c6-7e08-4474-a285-3208198ce6fd}.name", "chrome://browser/locale/browser.properties"); +pref("extensions.{972ce4c6-7e08-4474-a285-3208198ce6fd}.description", "chrome://browser/locale/browser.properties"); + +pref("lightweightThemes.update.enabled", true); +pref("lightweightThemes.getMoreURL", "https://addons.mozilla.org/%LOCALE%/firefox/themes"); +pref("lightweightThemes.recommendedThemes", "[{\"id\":\"recommended-1\",\"homepageURL\":\"https://addons.mozilla.org/firefox/addon/a-web-browser-renaissance/\",\"headerURL\":\"resource:///chrome/browser/content/browser/defaultthemes/1.header.jpg\",\"footerURL\":\"resource:///chrome/browser/content/browser/defaultthemes/1.footer.jpg\",\"textcolor\":\"#000000\",\"accentcolor\":\"#f2d9b1\",\"iconURL\":\"resource:///chrome/browser/content/browser/defaultthemes/1.icon.jpg\",\"previewURL\":\"resource:///chrome/browser/content/browser/defaultthemes/1.preview.jpg\",\"author\":\"Sean.Martell\",\"version\":\"0\"},{\"id\":\"recommended-2\",\"homepageURL\":\"https://addons.mozilla.org/firefox/addon/space-fantasy/\",\"headerURL\":\"resource:///chrome/browser/content/browser/defaultthemes/2.header.jpg\",\"footerURL\":\"resource:///chrome/browser/content/browser/defaultthemes/2.footer.jpg\",\"textcolor\":\"#ffffff\",\"accentcolor\":\"#d9d9d9\",\"iconURL\":\"resource:///chrome/browser/content/browser/defaultthemes/2.icon.jpg\",\"previewURL\":\"resource:///chrome/browser/content/browser/defaultthemes/2.preview.jpg\",\"author\":\"fx5800p\",\"version\":\"1.0\"},{\"id\":\"recommended-3\",\"homepageURL\":\"https://addons.mozilla.org/firefox/addon/linen-light/\",\"headerURL\":\"resource:///chrome/browser/content/browser/defaultthemes/3.header.png\",\"footerURL\":\"resource:///chrome/browser/content/browser/defaultthemes/3.footer.png\",\"accentcolor\":\"#ada8a8\",\"iconURL\":\"resource:///chrome/browser/content/browser/defaultthemes/3.icon.png\",\"previewURL\":\"resource:///chrome/browser/content/browser/defaultthemes/3.preview.png\",\"author\":\"DVemer\",\"version\":\"1.0\"},{\"id\":\"recommended-4\",\"homepageURL\":\"https://addons.mozilla.org/firefox/addon/pastel-gradient/\",\"headerURL\":\"resource:///chrome/browser/content/browser/defaultthemes/4.header.png\",\"footerURL\":\"resource:///chrome/browser/content/browser/defaultthemes/4.footer.png\",\"textcolor\":\"#000000\",\"accentcolor\":\"#000000\",\"iconURL\":\"resource:///chrome/browser/content/browser/defaultthemes/4.icon.png\",\"previewURL\":\"resource:///chrome/browser/content/browser/defaultthemes/4.preview.png\",\"author\":\"darrinhenein\",\"version\":\"1.0\"},{\"id\":\"recommended-5\",\"homepageURL\":\"https://addons.mozilla.org/firefox/addon/carbon-light/\",\"headerURL\":\"resource:///chrome/browser/content/browser/defaultthemes/5.header.png\",\"footerURL\":\"resource:///chrome/browser/content/browser/defaultthemes/5.footer.png\",\"textcolor\":\"#3b3b3b\",\"accentcolor\":\"#2e2e2e\",\"iconURL\":\"resource:///chrome/browser/content/browser/defaultthemes/5.icon.jpg\",\"previewURL\":\"resource:///chrome/browser/content/browser/defaultthemes/5.preview.jpg\",\"author\":\"Jaxivo\",\"version\":\"1.0\"}]"); + +#if defined(MOZ_ADOBE_EME) || defined(MOZ_WIDEVINE_EME) +pref("browser.eme.ui.enabled", true); +#else +pref("browser.eme.ui.enabled", false); +#endif + +pref("keyword.enabled", true); +pref("browser.fixup.domainwhitelist.localhost", true); + +pref("general.useragent.locale", "@AB_CD@"); +pref("general.skins.selectedSkin", "classic/1.0"); + +pref("general.smoothScroll", true); +#ifdef UNIX_BUT_NOT_MAC +pref("general.autoScroll", false); +#else +pref("general.autoScroll", true); +#endif + +// At startup, check if we're the default browser and prompt user if not. +pref("browser.shell.checkDefaultBrowser", true); +pref("browser.shell.shortcutFavicons",true); +pref("browser.shell.mostRecentDateSetAsDefault", ""); +#ifdef RELEASE_OR_BETA +pref("browser.shell.skipDefaultBrowserCheckOnFirstRun", false); +#else +pref("browser.shell.skipDefaultBrowserCheckOnFirstRun", true); +#endif +pref("browser.shell.skipDefaultBrowserCheck", true); +pref("browser.shell.defaultBrowserCheckCount", 0); +pref("browser.defaultbrowser.notificationbar", false); + +// 0 = blank, 1 = home (browser.startup.homepage), 2 = last visited page, 3 = resume previous browser session +// The behavior of option 3 is detailed at: http://wiki.mozilla.org/Session_Restore +pref("browser.startup.page", 1); +pref("browser.startup.homepage", "chrome://branding/locale/browserconfig.properties"); +// Whether we should skip the homepage when opening the first-run page +pref("browser.startup.firstrunSkipsHomepage", false); + +pref("browser.slowStartup.notificationDisabled", false); +pref("browser.slowStartup.timeThreshold", 40000); +pref("browser.slowStartup.maxSamples", 5); + +pref("browser.enable_automatic_image_resizing", true); +pref("browser.casting.enabled", false); +pref("browser.chrome.site_icons", true); +pref("browser.chrome.favicons", true); +// browser.warnOnQuit == false will override all other possible prompts when quitting or restarting +pref("browser.warnOnQuit", true); +// browser.showQuitWarning specifically controls the quit warning dialog. We +// might still show the window closing dialog with showQuitWarning == false. +pref("browser.showQuitWarning", false); +pref("browser.fullscreen.autohide", true); +pref("browser.fullscreen.animate", true); +pref("browser.overlink-delay", 80); + +#ifdef UNIX_BUT_NOT_MAC +pref("browser.urlbar.clickSelectsAll", false); +#else +pref("browser.urlbar.clickSelectsAll", true); +#endif +#ifdef UNIX_BUT_NOT_MAC +pref("browser.urlbar.doubleClickSelectsAll", true); +#else +pref("browser.urlbar.doubleClickSelectsAll", false); +#endif + +// Control autoFill behavior +pref("browser.urlbar.autoFill", true); +pref("browser.urlbar.autoFill.typed", true); + +// 0: Match anywhere (e.g., middle of words) +// 1: Match on word boundaries and then try matching anywhere +// 2: Match only on word boundaries (e.g., after / or .) +// 3: Match at the beginning of the url or title +pref("browser.urlbar.matchBehavior", 1); +pref("browser.urlbar.filter.javascript", true); + +// the maximum number of results to show in autocomplete when doing richResults +pref("browser.urlbar.maxRichResults", 10); +// The amount of time (ms) to wait after the user has stopped typing +// before starting to perform autocomplete. 50 is the default set in +// autocomplete.xml. +pref("browser.urlbar.delay", 50); + +// The special characters below can be typed into the urlbar to either restrict +// the search to visited history, bookmarked, tagged pages; or force a match on +// just the title text or url. +pref("browser.urlbar.restrict.history", "^"); +pref("browser.urlbar.restrict.bookmark", "*"); +pref("browser.urlbar.restrict.tag", "+"); +pref("browser.urlbar.restrict.openpage", "%"); +pref("browser.urlbar.restrict.typed", "~"); +pref("browser.urlbar.restrict.searches", "$"); +pref("browser.urlbar.match.title", "#"); +pref("browser.urlbar.match.url", "@"); + +// The default behavior for the urlbar can be configured to use any combination +// of the match filters with each additional filter adding more results (union). +pref("browser.urlbar.suggest.history", true); +pref("browser.urlbar.suggest.bookmark", true); +pref("browser.urlbar.suggest.openpage", true); +pref("browser.urlbar.suggest.searches", false); +pref("browser.urlbar.userMadeSearchSuggestionsChoice", false); +// 4 here means the suggestion notification will be automatically +// hidden the 4th day, so it will actually be shown on 3 different days. +pref("browser.urlbar.daysBeforeHidingSuggestionsPrompt", 4); +pref("browser.urlbar.lastSuggestionsPromptDate", 20160601); + +// Limit the number of characters sent to the current search engine to fetch +// suggestions. +pref("browser.urlbar.maxCharsForSearchSuggestions", 20); + +// Restrictions to current suggestions can also be applied (intersection). +// Typed suggestion works only if history is set to true. +pref("browser.urlbar.suggest.history.onlyTyped", false); + +pref("browser.urlbar.formatting.enabled", true); +pref("browser.urlbar.trimURLs", true); + +#if defined(NIGHTLY_BUILD) +pref("browser.urlbar.oneOffSearches", true); +#else +pref("browser.urlbar.oneOffSearches", false); +#endif + +pref("browser.altClickSave", false); + +// Enable logging downloads operations to the Console. +pref("browser.download.loglevel", "Error"); + +// Number of milliseconds to wait for the http headers (and thus +// the Content-Disposition filename) before giving up and falling back to +// picking a filename without that info in hand so that the user sees some +// feedback from their action. +pref("browser.download.saveLinkAsFilenameTimeout", 4000); + +pref("browser.download.useDownloadDir", true); +pref("browser.download.folderList", 1); +pref("browser.download.manager.addToRecentDocs", true); +pref("browser.download.manager.resumeOnWakeDelay", 10000); + +#ifdef RELEASE_OR_BETA +pref("browser.download.showPanelDropmarker", false); +#else +pref("browser.download.showPanelDropmarker", true); +#endif + +// This allows disabling the animated notifications shown by +// the Downloads Indicator when a download starts or completes. +pref("browser.download.animateNotifications", true); + +// This records whether or not the panel has been shown at least once. +pref("browser.download.panel.shown", false); + +#ifndef XP_MACOSX +pref("browser.helperApps.deleteTempFileOnExit", true); +#endif + +// search engines URL +pref("browser.search.searchEnginesURL", "https://addons.mozilla.org/%LOCALE%/firefox/search-engines/"); + +// pointer to the default engine name +pref("browser.search.defaultenginename", "chrome://browser-region/locale/region.properties"); + +// Ordering of Search Engines in the Engine list. +pref("browser.search.order.1", "chrome://browser-region/locale/region.properties"); +pref("browser.search.order.2", "chrome://browser-region/locale/region.properties"); +pref("browser.search.order.3", "chrome://browser-region/locale/region.properties"); + +// Market-specific search defaults +// This is disabled globally, and then enabled for individual locales +// in firefox-l10n.js (eg. it's enabled for en-US). +pref("browser.search.geoSpecificDefaults", false); +pref("browser.search.geoSpecificDefaults.url", "https://search.services.mozilla.com/1/%APP%/%VERSION%/%CHANNEL%/%LOCALE%/%REGION%/%DISTRIBUTION%/%DISTRIBUTION_VERSION%"); + +// US specific default (used as a fallback if the geoSpecificDefaults request fails). +pref("browser.search.defaultenginename.US", "data:text/plain,browser.search.defaultenginename.US=Google"); +pref("browser.search.order.US.1", "data:text/plain,browser.search.order.US.1=Google"); +pref("browser.search.order.US.2", "data:text/plain,browser.search.order.US.2=Yahoo"); +pref("browser.search.order.US.3", "data:text/plain,browser.search.order.US.3=Bing"); + +// search bar results always open in a new tab +pref("browser.search.openintab", false); + +// context menu searches open in the foreground +pref("browser.search.context.loadInBackground", false); + +// comma seperated list of of engines to hide in the search panel. +pref("browser.search.hiddenOneOffs", ""); + +#ifndef RELEASE_OR_BETA +pref("browser.search.reset.enabled", true); +#endif + +pref("browser.sessionhistory.max_entries", 50); + +// Built-in default permissions. +pref("permissions.manager.defaultsUrl", "resource://app/defaults/permissions"); + +// handle links targeting new windows +// 1=current window/tab, 2=new window, 3=new tab in most recent window +pref("browser.link.open_newwindow", 3); + +// handle external links (i.e. links opened from a different application) +// default: use browser.link.open_newwindow +// 1-3: see browser.link.open_newwindow for interpretation +pref("browser.link.open_newwindow.override.external", -1); + +// 0: no restrictions - divert everything +// 1: don't divert window.open at all +// 2: don't divert window.open with features +pref("browser.link.open_newwindow.restriction", 2); + +// If true, this pref causes windows opened by window.open to be forced into new +// tabs (rather than potentially opening separate windows, depending on +// window.open arguments) when the browser is in fullscreen mode. +// We set this differently on Mac because the fullscreen implementation there is +// different. +#ifdef XP_MACOSX +pref("browser.link.open_newwindow.disabled_in_fullscreen", true); +#else +pref("browser.link.open_newwindow.disabled_in_fullscreen", false); +#endif + +// Tabbed browser +pref("browser.tabs.closeWindowWithLastTab", true); +pref("browser.tabs.insertRelatedAfterCurrent", true); +pref("browser.tabs.warnOnClose", true); +pref("browser.tabs.warnOnCloseOtherTabs", true); +pref("browser.tabs.warnOnOpen", true); +pref("browser.tabs.maxOpenBeforeWarn", 15); +pref("browser.tabs.loadInBackground", true); +pref("browser.tabs.opentabfor.middleclick", true); +pref("browser.tabs.loadDivertedInBackground", false); +pref("browser.tabs.loadBookmarksInBackground", false); +pref("browser.tabs.tabClipWidth", 140); +pref("browser.tabs.animate", true); +#ifdef UNIX_BUT_NOT_MAC +pref("browser.tabs.drawInTitlebar", false); +#else +pref("browser.tabs.drawInTitlebar", true); +#endif + +// When tabs opened by links in other tabs via a combination of +// browser.link.open_newwindow being set to 3 and target="_blank" etc are +// closed: +// true return to the tab that opened this tab (its owner) +// false return to the adjacent tab (old default) +pref("browser.tabs.selectOwnerOnClose", true); + +pref("browser.tabs.showAudioPlayingIcon", true); +// This should match Chromium's audio indicator delay. +pref("browser.tabs.delayHidingAudioPlayingIconMS", 3000); + +pref("browser.tabs.dontfocusfordialogs", true); + +pref("browser.ctrlTab.previews", false); + +// By default, do not export HTML at shutdown. +// If true, at shutdown the bookmarks in your menu and toolbar will +// be exported as HTML to the bookmarks.html file. +pref("browser.bookmarks.autoExportHTML", false); + +// The maximum number of daily bookmark backups to +// keep in {PROFILEDIR}/bookmarkbackups. Special values: +// -1: unlimited +// 0: no backups created (and deletes all existing backups) +pref("browser.bookmarks.max_backups", 15); + +pref("browser.bookmarks.showRecentlyBookmarked", true); + +// Scripts & Windows prefs +pref("dom.disable_open_during_load", true); +pref("javascript.options.showInConsole", true); +#ifdef DEBUG +pref("general.warnOnAboutConfig", false); +#endif + +// This is the pref to control the location bar, change this to true to +// force this - this makes the origin of popup windows more obvious to avoid +// spoofing. We would rather not do it by default because it affects UE for web +// applications, but without it there isn't a really good way to prevent chrome +// spoofing, see bug 337344 +pref("dom.disable_window_open_feature.location", true); +// prevent JS from setting status messages +pref("dom.disable_window_status_change", true); +// allow JS to move and resize existing windows +pref("dom.disable_window_move_resize", false); +// prevent JS from monkeying with window focus, etc +pref("dom.disable_window_flip", true); + +// popups.policy 1=allow,2=reject +pref("privacy.popups.policy", 1); +pref("privacy.popups.usecustom", true); +pref("privacy.popups.showBrowserMessage", true); + +pref("privacy.item.cookies", false); + +pref("privacy.clearOnShutdown.history", true); +pref("privacy.clearOnShutdown.formdata", true); +pref("privacy.clearOnShutdown.downloads", true); +pref("privacy.clearOnShutdown.cookies", true); +pref("privacy.clearOnShutdown.cache", true); +pref("privacy.clearOnShutdown.sessions", true); +pref("privacy.clearOnShutdown.offlineApps", false); +pref("privacy.clearOnShutdown.siteSettings", false); +pref("privacy.clearOnShutdown.openWindows", false); + +pref("privacy.cpd.history", true); +pref("privacy.cpd.formdata", true); +pref("privacy.cpd.passwords", false); +pref("privacy.cpd.downloads", true); +pref("privacy.cpd.cookies", true); +pref("privacy.cpd.cache", true); +pref("privacy.cpd.sessions", true); +pref("privacy.cpd.offlineApps", false); +pref("privacy.cpd.siteSettings", false); +pref("privacy.cpd.openWindows", false); + +// What default should we use for the time span in the sanitizer: +// 0 - Clear everything +// 1 - Last Hour +// 2 - Last 2 Hours +// 3 - Last 4 Hours +// 4 - Today +// 5 - Last 5 minutes +// 6 - Last 24 hours +pref("privacy.sanitize.timeSpan", 1); +pref("privacy.sanitize.sanitizeOnShutdown", false); + +pref("privacy.sanitize.migrateFx3Prefs", false); + +pref("privacy.panicButton.enabled", true); + +pref("privacy.firstparty.isolate", false); + +pref("network.proxy.share_proxy_settings", false); // use the same proxy settings for all protocols + +// simple gestures support +pref("browser.gesture.swipe.left", "Browser:BackOrBackDuplicate"); +pref("browser.gesture.swipe.right", "Browser:ForwardOrForwardDuplicate"); +pref("browser.gesture.swipe.up", "cmd_scrollTop"); +pref("browser.gesture.swipe.down", "cmd_scrollBottom"); +#ifdef XP_MACOSX +pref("browser.gesture.pinch.latched", true); +pref("browser.gesture.pinch.threshold", 150); +#else +pref("browser.gesture.pinch.latched", false); +pref("browser.gesture.pinch.threshold", 25); +#endif +#ifdef XP_WIN +// Enabled for touch input display zoom. +pref("browser.gesture.pinch.out", "cmd_fullZoomEnlarge"); +pref("browser.gesture.pinch.in", "cmd_fullZoomReduce"); +pref("browser.gesture.pinch.out.shift", "cmd_fullZoomReset"); +pref("browser.gesture.pinch.in.shift", "cmd_fullZoomReset"); +#else +// Disabled by default due to issues with track pad input. +pref("browser.gesture.pinch.out", ""); +pref("browser.gesture.pinch.in", ""); +pref("browser.gesture.pinch.out.shift", ""); +pref("browser.gesture.pinch.in.shift", ""); +#endif +pref("browser.gesture.twist.latched", false); +pref("browser.gesture.twist.threshold", 0); +pref("browser.gesture.twist.right", "cmd_gestureRotateRight"); +pref("browser.gesture.twist.left", "cmd_gestureRotateLeft"); +pref("browser.gesture.twist.end", "cmd_gestureRotateEnd"); +pref("browser.gesture.tap", "cmd_fullZoomReset"); + +pref("browser.snapshots.limit", 0); + +// 0: Nothing happens +// 1: Scrolling contents +// 2: Go back or go forward, in your history +// 3: Zoom in or out. +#ifdef XP_MACOSX +// On OS X, if the wheel has one axis only, shift+wheel comes through as a +// horizontal scroll event. Thus, we can't assign anything other than normal +// scrolling to shift+wheel. +pref("mousewheel.with_alt.action", 2); +pref("mousewheel.with_shift.action", 1); +// On MacOS X, control+wheel is typically handled by system and we don't +// receive the event. So, command key which is the main modifier key for +// acceleration is the best modifier for zoom-in/out. However, we should keep +// the control key setting for backward compatibility. +pref("mousewheel.with_meta.action", 3); // command key on Mac +// Disable control-/meta-modified horizontal mousewheel events, since +// those are used on Mac as part of modified swipe gestures (e.g. +// Left swipe+Cmd = go back in a new tab). +pref("mousewheel.with_control.action.override_x", 0); +pref("mousewheel.with_meta.action.override_x", 0); +#else +pref("mousewheel.with_alt.action", 1); +pref("mousewheel.with_shift.action", 2); +pref("mousewheel.with_meta.action", 1); // win key on Win, Super/Hyper on Linux +#endif +pref("mousewheel.with_control.action",3); +pref("mousewheel.with_win.action", 1); + +pref("browser.xul.error_pages.enabled", true); +pref("browser.xul.error_pages.expert_bad_cert", false); + +// Enable captive portal detection. +pref("network.captive-portal-service.enabled", true); + +// If true, network link events will change the value of navigator.onLine +pref("network.manage-offline-status", true); + +// We want to make sure mail URLs are handled externally... +pref("network.protocol-handler.external.mailto", true); // for mail +pref("network.protocol-handler.external.news", true); // for news +pref("network.protocol-handler.external.snews", true); // for secure news +pref("network.protocol-handler.external.nntp", true); // also news +#ifdef XP_WIN +pref("network.protocol-handler.external.ms-windows-store", true); +#endif + +// ...without warning dialogs +pref("network.protocol-handler.warn-external.mailto", false); +pref("network.protocol-handler.warn-external.news", false); +pref("network.protocol-handler.warn-external.snews", false); +pref("network.protocol-handler.warn-external.nntp", false); +#ifdef XP_WIN +pref("network.protocol-handler.warn-external.ms-windows-store", false); +#endif + +// By default, all protocol handlers are exposed. This means that +// the browser will respond to openURL commands for all URL types. +// It will also try to open link clicks inside the browser before +// failing over to the system handlers. +pref("network.protocol-handler.expose-all", true); +pref("network.protocol-handler.expose.mailto", false); +pref("network.protocol-handler.expose.news", false); +pref("network.protocol-handler.expose.snews", false); +pref("network.protocol-handler.expose.nntp", false); + +pref("accessibility.typeaheadfind", false); +pref("accessibility.typeaheadfind.timeout", 5000); +pref("accessibility.typeaheadfind.linksonly", false); +pref("accessibility.typeaheadfind.flashBar", 1); + +#ifdef NIGHTLY_BUILD +pref("findbar.highlightAll", true); +pref("findbar.modalHighlight", true); +#endif + +// Tracks when accessibility is loaded into the previous session. +pref("accessibility.loadedInLastSession", false); + +pref("plugins.click_to_play", true); +pref("plugins.testmode", false); + +pref("plugin.default.state", 1); + +// Plugins bundled in XPIs are enabled by default. +pref("plugin.defaultXpi.state", 2); + +// Flash is enabled by default, and Java is click-to-activate by default on +// all channels. +pref("plugin.state.flash", 2); +pref("plugin.state.java", 1); + +// On ESR only, we re-enable all plugins instead of only loading Flash. +pref("plugin.load_flash_only", false); + +#ifdef XP_MACOSX +pref("browser.preferences.animateFadeIn", true); +#else +pref("browser.preferences.animateFadeIn", false); +#endif + +#ifdef XP_WIN +pref("browser.preferences.instantApply", false); +#else +pref("browser.preferences.instantApply", true); +#endif + +pref("browser.download.show_plugins_in_list", true); +pref("browser.download.hide_plugins_without_extensions", true); + +// Backspace and Shift+Backspace behavior +// 0 goes Back/Forward +// 1 act like PgUp/PgDown +// 2 and other values, nothing +#ifdef UNIX_BUT_NOT_MAC +pref("browser.backspace_action", 2); +#else +pref("browser.backspace_action", 0); +#endif + +// this will automatically enable inline spellchecking (if it is available) for +// editable elements in HTML +// 0 = spellcheck nothing +// 1 = check multi-line controls [default] +// 2 = check multi/single line controls +pref("layout.spellcheckDefault", 1); + +pref("browser.send_pings", false); + +/* initial web feed readers list */ +pref("browser.contentHandlers.types.0.title", "chrome://browser-region/locale/region.properties"); +pref("browser.contentHandlers.types.0.uri", "chrome://browser-region/locale/region.properties"); +pref("browser.contentHandlers.types.0.type", "application/vnd.mozilla.maybe.feed"); +pref("browser.contentHandlers.types.1.title", "chrome://browser-region/locale/region.properties"); +pref("browser.contentHandlers.types.1.uri", "chrome://browser-region/locale/region.properties"); +pref("browser.contentHandlers.types.1.type", "application/vnd.mozilla.maybe.feed"); +pref("browser.contentHandlers.types.2.title", "chrome://browser-region/locale/region.properties"); +pref("browser.contentHandlers.types.2.uri", "chrome://browser-region/locale/region.properties"); +pref("browser.contentHandlers.types.2.type", "application/vnd.mozilla.maybe.feed"); +pref("browser.contentHandlers.types.3.title", "chrome://browser-region/locale/region.properties"); +pref("browser.contentHandlers.types.3.uri", "chrome://browser-region/locale/region.properties"); +pref("browser.contentHandlers.types.3.type", "application/vnd.mozilla.maybe.feed"); +pref("browser.contentHandlers.types.4.title", "chrome://browser-region/locale/region.properties"); +pref("browser.contentHandlers.types.4.uri", "chrome://browser-region/locale/region.properties"); +pref("browser.contentHandlers.types.4.type", "application/vnd.mozilla.maybe.feed"); +pref("browser.contentHandlers.types.5.title", "chrome://browser-region/locale/region.properties"); +pref("browser.contentHandlers.types.5.uri", "chrome://browser-region/locale/region.properties"); +pref("browser.contentHandlers.types.5.type", "application/vnd.mozilla.maybe.feed"); + +pref("browser.feeds.handler", "ask"); +pref("browser.videoFeeds.handler", "ask"); +pref("browser.audioFeeds.handler", "ask"); + +// At startup, if the handler service notices that the version number in the +// region.properties file is newer than the version number in the handler +// service datastore, it will add any new handlers it finds in the prefs (as +// seeded by this file) to its datastore. +pref("gecko.handlerService.defaultHandlersVersion", "chrome://browser-region/locale/region.properties"); + +// The default set of web-based protocol handlers shown in the application +// selection dialog for webcal: ; I've arbitrarily picked 4 default handlers +// per protocol, but if some locale wants more than that (or defaults for some +// protocol not currently listed here), we should go ahead and add those. + +// webcal +pref("gecko.handlerService.schemes.webcal.0.name", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.webcal.0.uriTemplate", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.webcal.1.name", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.webcal.1.uriTemplate", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.webcal.2.name", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.webcal.2.uriTemplate", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.webcal.3.name", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.webcal.3.uriTemplate", "chrome://browser-region/locale/region.properties"); + +// mailto +pref("gecko.handlerService.schemes.mailto.0.name", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.mailto.0.uriTemplate", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.mailto.1.name", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.mailto.1.uriTemplate", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.mailto.2.name", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.mailto.2.uriTemplate", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.mailto.3.name", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.mailto.3.uriTemplate", "chrome://browser-region/locale/region.properties"); + +// irc +pref("gecko.handlerService.schemes.irc.0.name", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.irc.0.uriTemplate", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.irc.1.name", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.irc.1.uriTemplate", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.irc.2.name", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.irc.2.uriTemplate", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.irc.3.name", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.irc.3.uriTemplate", "chrome://browser-region/locale/region.properties"); + +// ircs +pref("gecko.handlerService.schemes.ircs.0.name", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.ircs.0.uriTemplate", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.ircs.1.name", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.ircs.1.uriTemplate", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.ircs.2.name", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.ircs.2.uriTemplate", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.ircs.3.name", "chrome://browser-region/locale/region.properties"); +pref("gecko.handlerService.schemes.ircs.3.uriTemplate", "chrome://browser-region/locale/region.properties"); + +// By default, we don't want protocol/content handlers to be registered from a different host, see bug 402287 +pref("gecko.handlerService.allowRegisterFromDifferentHost", false); + +pref("browser.geolocation.warning.infoURL", "https://www.mozilla.org/%LOCALE%/firefox/geolocation/"); + +pref("browser.EULA.version", 3); +pref("browser.rights.version", 3); +pref("browser.rights.3.shown", false); + +#ifdef DEBUG +// Don't show the about:rights notification in debug builds. +pref("browser.rights.override", true); +#endif + +pref("browser.selfsupport.url", "https://self-repair.mozilla.org/%LOCALE%/repair"); + +pref("browser.sessionstore.resume_from_crash", true); +pref("browser.sessionstore.resume_session_once", false); + +// minimal interval between two save operations in milliseconds +pref("browser.sessionstore.interval", 15000); +// on which sites to save text data, POSTDATA and cookies +// 0 = everywhere, 1 = unencrypted sites, 2 = nowhere +pref("browser.sessionstore.privacy_level", 0); +// how many tabs can be reopened (per window) +pref("browser.sessionstore.max_tabs_undo", 10); +// how many windows can be reopened (per session) - on non-OS X platforms this +// pref may be ignored when dealing with pop-up windows to ensure proper startup +pref("browser.sessionstore.max_windows_undo", 3); +// number of crashes that can occur before the about:sessionrestore page is displayed +// (this pref has no effect if more than 6 hours have passed since the last crash) +pref("browser.sessionstore.max_resumed_crashes", 1); +// number of back button session history entries to restore (-1 = all of them) +pref("browser.sessionstore.max_serialize_back", 10); +// number of forward button session history entries to restore (-1 = all of them) +pref("browser.sessionstore.max_serialize_forward", -1); +// restore_on_demand overrides MAX_CONCURRENT_TAB_RESTORES (sessionstore constant) +// and restore_hidden_tabs. When true, tabs will not be restored until they are +// focused (also applies to tabs that aren't visible). When false, the values +// for MAX_CONCURRENT_TAB_RESTORES and restore_hidden_tabs are respected. +// Selected tabs are always restored regardless of this pref. +pref("browser.sessionstore.restore_on_demand", true); +// Whether to automatically restore hidden tabs (i.e., tabs in other tab groups) or not +pref("browser.sessionstore.restore_hidden_tabs", false); +// If restore_on_demand is set, pinned tabs are restored on startup by default. +// When set to true, this pref overrides that behavior, and pinned tabs will only +// be restored when they are focused. +pref("browser.sessionstore.restore_pinned_tabs_on_demand", false); +// The version at which we performed the latest upgrade backup +pref("browser.sessionstore.upgradeBackup.latestBuildID", ""); +// How many upgrade backups should be kept +pref("browser.sessionstore.upgradeBackup.maxUpgradeBackups", 3); +// End-users should not run sessionstore in debug mode +pref("browser.sessionstore.debug", false); +// Causes SessionStore to ignore non-final update messages from +// browser tabs that were not caused by a flush from the parent. +// This is a testing flag and should not be used by end-users. +pref("browser.sessionstore.debug.no_auto_updates", false); +// Forget closed windows/tabs after two weeks +pref("browser.sessionstore.cleanup.forget_closed_after", 1209600000); + +// allow META refresh by default +pref("accessibility.blockautorefresh", false); + +// Whether history is enabled or not. +pref("places.history.enabled", true); + +// the (maximum) number of the recent visits to sample +// when calculating frecency +pref("places.frecency.numVisits", 10); + +// buckets (in days) for frecency calculation +pref("places.frecency.firstBucketCutoff", 4); +pref("places.frecency.secondBucketCutoff", 14); +pref("places.frecency.thirdBucketCutoff", 31); +pref("places.frecency.fourthBucketCutoff", 90); + +// weights for buckets for frecency calculations +pref("places.frecency.firstBucketWeight", 100); +pref("places.frecency.secondBucketWeight", 70); +pref("places.frecency.thirdBucketWeight", 50); +pref("places.frecency.fourthBucketWeight", 30); +pref("places.frecency.defaultBucketWeight", 10); + +// bonus (in percent) for visit transition types for frecency calculations +pref("places.frecency.embedVisitBonus", 0); +pref("places.frecency.framedLinkVisitBonus", 0); +pref("places.frecency.linkVisitBonus", 100); +pref("places.frecency.typedVisitBonus", 2000); +pref("places.frecency.bookmarkVisitBonus", 75); +pref("places.frecency.downloadVisitBonus", 0); +pref("places.frecency.permRedirectVisitBonus", 0); +pref("places.frecency.tempRedirectVisitBonus", 0); +pref("places.frecency.reloadVisitBonus", 0); +pref("places.frecency.defaultVisitBonus", 0); + +// bonus (in percent) for place types for frecency calculations +pref("places.frecency.unvisitedBookmarkBonus", 140); +pref("places.frecency.unvisitedTypedBonus", 200); + +// Controls behavior of the "Add Exception" dialog launched from SSL error pages +// 0 - don't pre-populate anything +// 1 - pre-populate site URL, but don't fetch certificate +// 2 - pre-populate site URL and pre-fetch certificate +pref("browser.ssl_override_behavior", 2); + +// True if the user should be prompted when a web application supports +// offline apps. +pref("browser.offline-apps.notify", true); + +// if true, use full page zoom instead of text zoom +pref("browser.zoom.full", true); + +// Whether or not to save and restore zoom levels on a per-site basis. +pref("browser.zoom.siteSpecific", true); + +// Whether or not to update background tabs to the current zoom level. +pref("browser.zoom.updateBackgroundTabs", true); + +// The breakpad report server to link to in about:crashes +pref("breakpad.reportURL", "https://crash-stats.mozilla.com/report/index/"); + +// URL for "Learn More" for Crash Reporter +pref("toolkit.crashreporter.infoURL", + "https://www.mozilla.org/legal/privacy/firefox.html#crash-reporter"); + +// base URL for web-based support pages +pref("app.support.baseURL", "https://support.mozilla.org/1/firefox/%VERSION%/%OS%/%LOCALE%/"); + +// a11y conflicts with e10s support page +pref("app.support.e10sAccessibilityUrl", "https://support.mozilla.org/1/firefox/%VERSION%/%OS%/%LOCALE%/accessibility-ppt"); + +// base url for web-based feedback pages +pref("app.feedback.baseURL", "https://forum.palemoon.org/viewforum.php?f=61"); + +// Name of alternate about: page for certificate errors (when undefined, defaults to about:neterror) +pref("security.alternate_certificate_error_page", "certerror"); + +// Whether to start the private browsing mode at application startup +pref("browser.privatebrowsing.autostart", false); + +// Don't try to alter this pref, it'll be reset the next time you use the +// bookmarking dialog +pref("browser.bookmarks.editDialog.firstEditField", "namePicker"); + +pref("dom.ipc.plugins.flash.disable-protected-mode", false); + +// Feature-disable the protected-mode auto-flip +pref("browser.flash-protected-mode-flip.enable", false); + +// Whether we've already flipped protected mode automatically +pref("browser.flash-protected-mode-flip.done", false); + +pref("dom.ipc.shims.enabledWarnings", false); + +// Start the browser in e10s mode +pref("browser.tabs.remote.autostart", false); +pref("browser.tabs.remote.desktopbehavior", true); + +// This pref governs whether we attempt to work around problems caused by +// plugins using OS calls to manipulate the cursor while running out-of- +// process. These workarounds all involve intercepting (hooking) certain +// OS calls in the plugin process, then arranging to make certain OS calls +// in the browser process. Eventually plugins will be required to use the +// NPAPI to manipulate the cursor, and these workarounds will be removed. +// See bug 621117. +#ifdef XP_MACOSX +pref("dom.ipc.plugins.nativeCursorSupport", true); +#endif + +#ifdef XP_WIN +pref("browser.taskbar.previews.enable", false); +pref("browser.taskbar.previews.max", 20); +pref("browser.taskbar.previews.cachetime", 5); +pref("browser.taskbar.lists.enabled", true); +pref("browser.taskbar.lists.frequent.enabled", true); +pref("browser.taskbar.lists.recent.enabled", false); +pref("browser.taskbar.lists.maxListItemCount", 7); +pref("browser.taskbar.lists.tasks.enabled", true); +pref("browser.taskbar.lists.refreshInSeconds", 120); +#endif + +// The sync engines to use. +pref("services.sync.registerEngines", "Bookmarks,Form,History,Password,Prefs,Tab,Addons,ExtensionStorage"); +// Preferences to be synced by default +pref("services.sync.prefs.sync.accessibility.blockautorefresh", true); +pref("services.sync.prefs.sync.accessibility.browsewithcaret", true); +pref("services.sync.prefs.sync.accessibility.typeaheadfind", true); +pref("services.sync.prefs.sync.accessibility.typeaheadfind.linksonly", true); +pref("services.sync.prefs.sync.addons.ignoreUserEnabledChanges", true); +// The addons prefs related to repository verification are intentionally +// not synced for security reasons. If a system is compromised, a user +// could weaken the pref locally, install an add-on from an untrusted +// source, and this would propagate automatically to other, +// uncompromised Sync-connected devices. +pref("services.sync.prefs.sync.browser.ctrlTab.previews", true); +pref("services.sync.prefs.sync.browser.download.useDownloadDir", true); +pref("services.sync.prefs.sync.browser.formfill.enable", true); +pref("services.sync.prefs.sync.browser.link.open_newwindow", true); +pref("services.sync.prefs.sync.browser.newtabpage.enabled", true); +pref("services.sync.prefs.sync.browser.newtabpage.pinned", true); +pref("services.sync.prefs.sync.browser.offline-apps.notify", true); +#ifdef MOZ_SAFE_BROWSING +pref("services.sync.prefs.sync.browser.safebrowsing.phishing.enabled", true); +pref("services.sync.prefs.sync.browser.safebrowsing.malware.enabled", true); +#endif +pref("services.sync.prefs.sync.browser.search.update", true); +pref("services.sync.prefs.sync.browser.sessionstore.restore_on_demand", true); +pref("services.sync.prefs.sync.browser.startup.homepage", true); +pref("services.sync.prefs.sync.browser.startup.page", true); +pref("services.sync.prefs.sync.browser.tabs.loadInBackground", true); +pref("services.sync.prefs.sync.browser.tabs.warnOnClose", true); +pref("services.sync.prefs.sync.browser.tabs.warnOnOpen", true); +pref("services.sync.prefs.sync.browser.urlbar.autocomplete.enabled", true); +pref("services.sync.prefs.sync.browser.urlbar.maxRichResults", true); +pref("services.sync.prefs.sync.browser.urlbar.suggest.bookmark", true); +pref("services.sync.prefs.sync.browser.urlbar.suggest.history", true); +pref("services.sync.prefs.sync.browser.urlbar.suggest.history.onlyTyped", true); +pref("services.sync.prefs.sync.browser.urlbar.suggest.openpage", true); +pref("services.sync.prefs.sync.browser.urlbar.suggest.searches", true); +pref("services.sync.prefs.sync.dom.disable_open_during_load", true); +pref("services.sync.prefs.sync.dom.disable_window_flip", true); +pref("services.sync.prefs.sync.dom.disable_window_move_resize", true); +pref("services.sync.prefs.sync.dom.event.contextmenu.enabled", true); +pref("services.sync.prefs.sync.extensions.personas.current", true); +pref("services.sync.prefs.sync.extensions.update.enabled", true); +pref("services.sync.prefs.sync.intl.accept_languages", true); +pref("services.sync.prefs.sync.javascript.enabled", true); +pref("services.sync.prefs.sync.layout.spellcheckDefault", true); +pref("services.sync.prefs.sync.lightweightThemes.selectedThemeID", true); +pref("services.sync.prefs.sync.lightweightThemes.usedThemes", true); +pref("services.sync.prefs.sync.network.cookie.cookieBehavior", true); +pref("services.sync.prefs.sync.network.cookie.lifetimePolicy", true); +pref("services.sync.prefs.sync.network.cookie.lifetime.days", true); +pref("services.sync.prefs.sync.network.cookie.thirdparty.sessionOnly", true); +pref("services.sync.prefs.sync.permissions.default.image", true); +pref("services.sync.prefs.sync.pref.advanced.images.disable_button.view_image", true); +pref("services.sync.prefs.sync.pref.advanced.javascript.disable_button.advanced", true); +pref("services.sync.prefs.sync.pref.downloads.disable_button.edit_actions", true); +pref("services.sync.prefs.sync.pref.privacy.disable_button.cookie_exceptions", true); +pref("services.sync.prefs.sync.privacy.clearOnShutdown.cache", true); +pref("services.sync.prefs.sync.privacy.clearOnShutdown.cookies", true); +pref("services.sync.prefs.sync.privacy.clearOnShutdown.downloads", true); +pref("services.sync.prefs.sync.privacy.clearOnShutdown.formdata", true); +pref("services.sync.prefs.sync.privacy.clearOnShutdown.history", true); +pref("services.sync.prefs.sync.privacy.clearOnShutdown.offlineApps", true); +pref("services.sync.prefs.sync.privacy.clearOnShutdown.sessions", true); +pref("services.sync.prefs.sync.privacy.clearOnShutdown.siteSettings", true); +pref("services.sync.prefs.sync.privacy.donottrackheader.enabled", true); +pref("services.sync.prefs.sync.privacy.sanitize.sanitizeOnShutdown", true); +pref("services.sync.prefs.sync.privacy.trackingprotection.enabled", true); +pref("services.sync.prefs.sync.privacy.trackingprotection.pbmode.enabled", true); +pref("services.sync.prefs.sync.security.OCSP.enabled", true); +pref("services.sync.prefs.sync.security.OCSP.require", true); +pref("services.sync.prefs.sync.security.default_personal_cert", true); +pref("services.sync.prefs.sync.security.tls.version.min", true); +pref("services.sync.prefs.sync.security.tls.version.max", true); +pref("services.sync.prefs.sync.services.sync.syncedTabs.showRemoteIcons", true); +pref("services.sync.prefs.sync.signon.rememberSignons", true); +pref("services.sync.prefs.sync.spellchecker.dictionary", true); +pref("services.sync.prefs.sync.xpinstall.whitelist.required", true); + +// A preference that controls whether we should show the icon for a remote tab. +// This pref has no UI but exists because some people may be concerned that +// fetching these icons to show remote tabs may leak information about that +// user's tabs and bookmarks. Note this pref is also synced. +pref("services.sync.syncedTabs.showRemoteIcons", true); + +pref("services.sync.sendTabToDevice.enabled", true); + +// Developer edition preferences +#ifdef MOZ_DEV_EDITION +sticky_pref("lightweightThemes.selectedThemeID", "firefox-devedition@mozilla.org"); +#else +sticky_pref("lightweightThemes.selectedThemeID", ""); +#endif + +// Whether the character encoding menu is under the main Firefox button. This +// preference is a string so that localizers can alter it. +pref("browser.menu.showCharacterEncoding", "chrome://browser/locale/browser.properties"); + +// Allow using tab-modal prompts when possible. +pref("prompts.tab_modal.enabled", true); + +// Activates preloading of the new tab url. +pref("browser.newtab.preload", true); + +// Remembers if the about:newtab intro has been shown +// NOTE: This preference is unused but was not removed in case +// this information will be valuable in the future. +pref("browser.newtabpage.introShown", false); + +// Toggles the content of 'about:newtab'. Shows the grid when enabled. +pref("browser.newtabpage.enabled", true); + +// Toggles the enhanced content of 'about:newtab'. Shows sponsored tiles. +sticky_pref("browser.newtabpage.enhanced", false); + +// enables Activity Stream inspired layout +pref("browser.newtabpage.compact", false); + +// enables showing basic placeholders for missing thumbnails +pref("browser.newtabpage.thumbnailPlaceholder", false); + +// number of rows of newtab grid +pref("browser.newtabpage.rows", 3); + +// number of columns of newtab grid +pref("browser.newtabpage.columns", 5); + +// directory tiles download URL +pref("browser.newtabpage.directory.source", "https://tiles.services.mozilla.com/v3/links/fetch/%LOCALE%/%CHANNEL%"); + +// endpoint to send newtab click and view pings +pref("browser.newtabpage.directory.ping", "https://tiles.services.mozilla.com/v3/links/"); + +// activates the remote-hosted newtab page +pref("browser.newtabpage.remote", false); + +// remote newtab version targeted +pref("browser.newtabpage.remote.version", "1"); + +// Toggles endpoints allowed for remote newtab communications +pref("browser.newtabpage.remote.mode", "production"); + +// content-signature tests for remote newtab +pref("browser.newtabpage.remote.content-signing-test", false); + +// verification keys for remote-hosted newtab page +pref("browser.newtabpage.remote.keys", ""); + +// Enable the DOM fullscreen API. +pref("full-screen-api.enabled", true); + +// Startup Crash Tracking +// number of startup crashes that can occur before starting into safe mode automatically +// (this pref has no effect if more than 6 hours have passed since the last crash) +pref("toolkit.startup.max_resumed_crashes", 3); + +// Completely disable pdf.js as an option to preview pdfs within firefox. +// Note: if this is not disabled it does not necessarily mean pdf.js is the pdf +// handler just that it is an option. +pref("pdfjs.disabled", false); +// Used by pdf.js to know the first time firefox is run with it installed so it +// can become the default pdf viewer. +pref("pdfjs.firstRun", true); +// The values of preferredAction and alwaysAskBeforeHandling before pdf.js +// became the default. +pref("pdfjs.previousHandler.preferredAction", 0); +pref("pdfjs.previousHandler.alwaysAskBeforeHandling", false); + +// The maximum amount of decoded image data we'll willingly keep around (we +// might keep around more than this, but we'll try to get down to this value). +// (This is intentionally on the high side; see bug 746055.) +pref("image.mem.max_decoded_image_kb", 256000); + +// Block insecure active content on https pages +pref("security.mixed_content.block_active_content", true); + +// Show degraded UI for http pages with password fields. +pref("security.insecure_password.ui.enabled", true); + +// Show in-content login form warning UI for insecure login fields +pref("security.insecure_field_warning.contextual.enabled", true); + +// 1 = allow MITM for certificate pinning checks. +pref("security.cert_pinning.enforcement_level", 1); + + +// Override the Gecko-default value of false for Firefox. +pref("plain_text.wrap_long_lines", true); + +// If this turns true, Moz*Gesture events are not called stopPropagation() +// before content. +pref("dom.debug.propagate_gesture_events_through_content", false); + +// The request URL of the GeoLocation backend. +pref("geo.wifi.uri", "http://ip-api.com/json/?fields=lat,lon,status,message"); + +#ifdef XP_MACOSX +#ifdef RELEASE_OR_BETA +pref("geo.provider.use_corelocation", false); +#else +pref("geo.provider.use_corelocation", true); +#endif +#endif + +#ifdef XP_WIN +pref("geo.provider.ms-windows-location", false); +#endif + +#ifdef MOZ_WIDGET_GTK +#ifdef MOZ_GPSD +#ifdef RELEASE_OR_BETA +pref("geo.provider.use_gpsd", false); +#else +pref("geo.provider.use_gpsd", true); +#endif +#endif +#endif + +// Necko IPC security checks only needed for app isolation for cookies/cache/etc: +// currently irrelevant for desktop e10s +pref("network.disable.ipc.security", true); + +// CustomizableUI debug logging. +pref("browser.uiCustomization.debug", false); + +// CustomizableUI state of the browser's user interface +pref("browser.uiCustomization.state", ""); + +// The remote content URL shown for FxA signup. Must use HTTPS. +pref("identity.fxaccounts.remote.signup.uri", "https://accounts.firefox.com/signup?service=sync&context=fx_desktop_v3"); + +// The URL where remote content that forces re-authentication for Firefox Accounts +// should be fetched. Must use HTTPS. +pref("identity.fxaccounts.remote.force_auth.uri", "https://accounts.firefox.com/force_auth?service=sync&context=fx_desktop_v3"); + +// The remote content URL shown for signin in. Must use HTTPS. +pref("identity.fxaccounts.remote.signin.uri", "https://accounts.firefox.com/signin?service=sync&context=fx_desktop_v3"); + +// The remote content URL where FxAccountsWebChannel messages originate. +pref("identity.fxaccounts.remote.webchannel.uri", "https://accounts.firefox.com/"); + +// The value of the context query parameter passed in some fxa requests when config +// discovery is enabled. +pref("identity.fxaccounts.contextParam", "fx_desktop_v3"); + +// The URL we take the user to when they opt to "manage" their Firefox Account. +// Note that this will always need to be in the same TLD as the +// "identity.fxaccounts.remote.signup.uri" pref. +pref("identity.fxaccounts.settings.uri", "https://accounts.firefox.com/settings?service=sync&context=fx_desktop_v3"); + +// The remote URL of the FxA Profile Server +pref("identity.fxaccounts.remote.profile.uri", "https://profile.accounts.firefox.com/v1"); + +// The remote URL of the FxA OAuth Server +pref("identity.fxaccounts.remote.oauth.uri", "https://oauth.accounts.firefox.com/v1"); + +// Whether we display profile images in the UI or not. +pref("identity.fxaccounts.profile_image.enabled", true); + +// Token server used by the FxA Sync identity. +pref("identity.sync.tokenserver.uri", "https://token.services.mozilla.com/1.0/sync/1.5"); + +// URLs for promo links to mobile browsers. Note that consumers are expected to +// append a value for utm_campaign. +pref("identity.mobilepromo.android", "https://www.mozilla.org/firefox/android/?utm_source=firefox-browser&utm_medium=firefox-browser&utm_campaign="); +pref("identity.mobilepromo.ios", "https://www.mozilla.org/firefox/ios/?utm_source=firefox-browser&utm_medium=firefox-browser&utm_campaign="); + +// Migrate any existing Firefox Account data from the default profile to the +// Developer Edition profile. +#ifdef MOZ_DEV_EDITION +pref("identity.fxaccounts.migrateToDevEdition", true); +#else +pref("identity.fxaccounts.migrateToDevEdition", false); +#endif + +// On GTK, we now default to showing the menubar only when alt is pressed: +#ifdef MOZ_WIDGET_GTK +pref("ui.key.menuAccessKeyFocuses", true); +#endif + +#ifdef MOZ_EME +// Encrypted media extensions. +// EME is visible but disabled by default. This is so that the +// "Play DRM content" checkbox in the browser UI is unchecked by default. +// DRM requires downloading and installing proprietary binaries, which +// users didn't necessarily opt-in to by installing the browser. +// The first time a site using EME is encountered, the user will be +// prompted to enable DRM, whereupon the EME plugin binaries will be +// downloaded if permission is granted. +pref("media.eme.enabled", false); +pref("media.eme.apiVisible", true); +#else +// Disable redundant interfaces +pref("media.eme.apiVisible", false); +#endif + +// Decode using Gecko Media Plugins in <video>, if a system decoder is not +// availble and the preferred GMP is available. +pref("media.gmp.decoder.enabled", false); + +// If decoding-via-GMP is turned on for <video>, use Adobe's GMP for decoding, +// if it's available. Note: We won't fallback to another GMP if Adobe's is not +// installed. +pref("media.gmp.decoder.aac", 2); +pref("media.gmp.decoder.h264", 2); + +// Whether we should run a test-pattern through EME GMPs before assuming they'll +// decode H.264. +pref("media.gmp.trial-create.enabled", true); + +// Note: when media.gmp-*.visible is true, provided we're running on a +// supported platform/OS version, the corresponding CDM appears in the +// plugins list, Firefox will download the GMP/CDM if enabled, and our +// UI to re-enable EME prompts the user to re-enable EME if it's disabled +// and script requests EME. If *.visible is false, we won't show the UI +// to enable the CDM if its disabled; it's as if the keysystem is completely +// unsupported. + +#ifdef MOZ_ADOBE_EME +pref("media.gmp-eme-adobe.visible", true); +// When Adobe EME is enabled in the build system, we don't actually enable +// the plugin by default, so that it doesn't download and install by default. +// When Adobe EME is first used, Firefox will prompt the user to enable it, +// and then download the CDM. +pref("media.gmp-eme-adobe.enabled", false); +#endif + +#ifdef MOZ_WIDEVINE_EME +pref("media.gmp-widevinecdm.visible", true); +pref("media.gmp-widevinecdm.enabled", true); +#endif + +// Play with different values of the decay time and get telemetry, +// 0 means to randomize (and persist) the experiment value in users' profiles, +// -1 means no experiment is run and we use the preferred value for frecency (6h) +pref("browser.cache.frecency_experiment", 0); + +pref("browser.translation.detectLanguage", false); +pref("browser.translation.neverForLanguages", ""); +// Show the translation UI bits, like the info bar, notification icon and preferences. +pref("browser.translation.ui.show", false); +// Allows to define the translation engine. Bing is default, Yandex may optionally switched on. +pref("browser.translation.engine", "bing"); + +// Telemetry settings. +// Determines if Telemetry pings can be archived locally. +pref("toolkit.telemetry.archive.enabled", true); + +// Enable GMP support in the addon manager. +pref("media.gmp-provider.enabled", true); + +#ifdef NIGHTLY_BUILD +pref("privacy.trackingprotection.ui.enabled", true); +#else +pref("privacy.trackingprotection.ui.enabled", false); +#endif + +// Enable Contextual Identity Containers +#ifdef NIGHTLY_BUILD +pref("privacy.userContext.enabled", true); +pref("privacy.userContext.ui.enabled", true); +pref("privacy.usercontext.about_newtab_segregation.enabled", true); +#else +pref("privacy.userContext.enabled", false); +pref("privacy.userContext.ui.enabled", false); +pref("privacy.usercontext.about_newtab_segregation.enabled", false); +#endif + +#ifndef RELEASE_OR_BETA +// At the moment, autostart.2 is used, while autostart.1 is unused. +// We leave it here set to false to reset users' defaults and allow +// us to change everybody to true in the future, when desired. +pref("browser.tabs.remote.autostart.1", false); +pref("browser.tabs.remote.autostart.2", true); +#endif + +// For the about:tabcrashed page +pref("browser.tabs.crashReporting.sendReport", true); +pref("browser.tabs.crashReporting.includeURL", false); +pref("browser.tabs.crashReporting.requestEmail", false); +pref("browser.tabs.crashReporting.emailMe", false); +pref("browser.tabs.crashReporting.email", ""); + +// Enable e10s add-on interposition by default. +pref("extensions.interposition.enabled", true); +pref("extensions.interposition.prefetching", true); + +// Enable blocking of e10s for add-on users on beta/release. +#ifdef RELEASE_OR_BETA +pref("extensions.e10sBlocksEnabling", true); +#endif + +// How often to check for CPOW timeouts. CPOWs are only timed out by +// the hang monitor. +pref("dom.ipc.cpow.timeout", 500); + +// Causes access on unsafe CPOWs from browser code to throw by default. +pref("dom.ipc.cpows.forbid-unsafe-from-browser", true); + +// Don't allow add-ons marked as multiprocessCompatible to use CPOWs. +pref("dom.ipc.cpows.forbid-cpows-in-compat-addons", true); + +// ...except for these add-ons: +pref("dom.ipc.cpows.allow-cpows-in-compat-addons", "{b9db16a4-6edc-47ec-a1f4-b86292ed211d},firegestures@xuldev.org,{DDC359D1-844A-42a7-9AA1-88A850A938A8},privateTab@infocatcher,mousegesturessuite@lemon_juice.addons.mozilla.org,treestyletab@piro.sakura.ne.jp,cliqz@cliqz.com,{AE93811A-5C9A-4d34-8462-F7B864FC4696},contextsearch2@lwz.addons.mozilla.org,{EF522540-89F5-46b9-B6FE-1829E2B572C6},{677a8f98-fd64-40b0-a883-b8c95d0cbf17},images@wink.su,fx-devtools,toolkit/require,url_advisor@kaspersky.com,{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d},{dc572301-7619-498c-a57d-39143191b318},dta@downthemall.net,{86095750-AD15-46d8-BF32-C0789F7E6A32},screenwise-prod@google.com,{91aa5abe-9de4-4347-b7b5-322c38dd9271},secureLogin@blueimp.net,ich@maltegoetz.de,come.back.block.image.from@cat-in-136.blogspot.com,{7b1bf0b6-a1b9-42b0-b75d-252036438bdc},s3crypto@data,{1e0fd655-5aea-4b4c-a583-f76ef1e3af9c},akahuku.fx.sp@toshiakisp.github.io,{aff87fa2-a58e-4edd-b852-0a20203c1e17},{1018e4d6-728f-4b20-ad56-37578a4de76b},rehostimage@engy.us,lazarus@interclue.com,{b2e69492-2358-071a-7056-24ad0c3defb1},flashstopper@byo.co.il,{e4a8a97b-f2ed-450b-b12d-ee082ba24781},jid1-f3mYMbCpz2AZYl@jetpack,{8c550e28-88c9-4764-bb52-aa489cf2efcd},{37fa1426-b82d-11db-8314-0800200c9a66},{ac2cfa60-bc96-11e0-962b-0800200c9a66},igetter@presenta.net,killspinners@byo.co.il,abhere2@moztw.org,{fc6339b8-9581-4fc7-b824-dffcb091fcb7},wampi@wink.su,backtrack@byalexv.co.uk,Gladiator_X@mail.ru,{73a6fe31-595d-460b-a920-fcc0f8843232},{46551EC9-40F0-4e47-8E18-8E5CF550CFB8},acewebextension_unlisted@acestream.org,@screen_maker,yasearch@yandex.ru,sp@avast.com,s3google@translator,igetterextension@presenta.net,{C1A2A613-35F1-4FCF-B27F-2840527B6556},screenwise-testing@google.com,helper-sig@savefrom.net,browser-loader,ImageSaver@Merci.chao,proxtube@abz.agency,wrc@avast.com,{9AA46F4F-4DC7-4c06-97AF-5035170634FE},jid1-CikLKKPVkw6ipw@jetpack,artur.dubovoy@gmail.com,nlgfeb@nlgfeb.ext,{A065A84F-95B6-433A-A0C8-4C040B77CE8A},fdm_ffext@freedownloadmanager.org"); + +// Enable e10s hang monitoring (slow script checking and plugin hang +// detection). +pref("dom.ipc.processHangMonitor", true); + +#ifdef DEBUG +// Don't report hangs in DEBUG builds. They're too slow and often a +// debugger is attached. +pref("dom.ipc.reportProcessHangs", false); +#else +pref("dom.ipc.reportProcessHangs", true); +#endif + +pref("browser.reader.detectedFirstArticle", false); +// Don't limit how many nodes we care about on desktop: +pref("reader.parse-node-limit", 0); + +// On desktop, we want the URLs to be included here for ease of debugging, +// and because (normally) these errors are not persisted anywhere. +pref("reader.errors.includeURLs", true); + +pref("view_source.tab", true); + +pref("dom.serviceWorkers.enabled", false); +pref("dom.serviceWorkers.openWindow.enabled", false); + +// Enable Push API. +pref("dom.push.enabled", false); + +// These are the thumbnail width/height set in about:newtab. +// If you change this, ENSURE IT IS THE SAME SIZE SET +// by about:newtab. These values are in CSS pixels. +pref("toolkit.pageThumbs.minWidth", 280); +pref("toolkit.pageThumbs.minHeight", 190); + +// Enable speech synthesis +pref("media.webspeech.synth.enabled", true); + +pref("browser.esedbreader.loglevel", "Error"); + +pref("browser.laterrun.enabled", false); + +pref("browser.migrate.automigrate.enabled", false); +// 4 here means the suggestion notification will be automatically +// hidden the 4th day, so it will actually be shown on 3 different days. +pref("browser.migrate.automigrate.daysToOfferUndo", 4); +pref("browser.migrate.automigrate.ui.enabled", true); + +pref("browser.migrate.chrome.history.limit", 0); +pref("browser.migrate.chrome.history.maxAgeInDays", 0); + +// Enable browser frames for use on desktop. Only exposed to chrome callers. +pref("dom.mozBrowserFramesEnabled", true); + +pref("extensions.pocket.enabled", true); + +pref("signon.schemeUpgrades", true); + +// "Simplify Page" feature in Print Preview. This feature is disabled by default +// in toolkit. +// +// This feature is only enabled on Nightly for Linux until bug 1306295 is fixed. +// For non-Linux, this feature is only enabled up to early Beta. +#ifdef UNIX_BUT_NOT_MAC +#if defined(NIGHTLY_BUILD) +pref("print.use_simplify_page", true); +#endif +#else +#if defined(EARLY_BETA_OR_EARLIER) +pref("print.use_simplify_page", true); +#endif +#endif + +// Space separated list of URLS that are allowed to send objects (instead of +// only strings) through webchannels. This list is duplicated in mobile/android/app/mobile.js +pref("webchannel.allowObject.urlWhitelist", "https://accounts.firefox.com https://content.cdn.mozilla.net https://input.mozilla.org https://support.mozilla.org https://install.mozilla.org"); + +// Whether or not the browser should scan for unsubmitted +// crash reports, and then show a notification for submitting +// those reports. +#ifdef EARLY_BETA_OR_EARLIER +pref("browser.crashReports.unsubmittedCheck.enabled", true); +#else +pref("browser.crashReports.unsubmittedCheck.enabled", false); +#endif + +// chancesUntilSuppress is how many times we'll show the unsubmitted +// crash report notification across different days and shutdown +// without a user choice before we suppress the notification for +// some number of days. +pref("browser.crashReports.unsubmittedCheck.chancesUntilSuppress", 4); +pref("browser.crashReports.unsubmittedCheck.autoSubmit2", false); + +#ifdef NIGHTLY_BUILD +// Enable the (fairly costly) client/server validation on nightly only. The other prefs +// controlling validation are located in /services/sync/services-sync.js +pref("services.sync.validation.enabled", true); +#endif diff --git a/application/basilisk/app/profile/pagethemes.rdf b/application/basilisk/app/profile/pagethemes.rdf new file mode 100644 index 000000000..3d09b95f5 --- /dev/null +++ b/application/basilisk/app/profile/pagethemes.rdf @@ -0,0 +1,7 @@ +<?xml version="1.0"?> <!-- -*- Mode: SGML -*- --> +<!-- This Source Code Form is subject to the terms of the Mozilla Public + - License, v. 2.0. If a copy of the MPL was not distributed with this + - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> + +<RDF:RDF xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/> + diff --git a/application/basilisk/app/profile/prefs.js b/application/basilisk/app/profile/prefs.js new file mode 100644 index 000000000..8c6f0d639 --- /dev/null +++ b/application/basilisk/app/profile/prefs.js @@ -0,0 +1,13 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +# Mozilla User Preferences + +/* Do not edit this file. + * + * If you make changes to this file while the browser is running, + * the changes will be overwritten when the browser exits. + * + * To make a manual change to preferences, you can visit the URL about:config + */ diff --git a/application/basilisk/app/splash.rc b/application/basilisk/app/splash.rc new file mode 100644 index 000000000..beccf8706 --- /dev/null +++ b/application/basilisk/app/splash.rc @@ -0,0 +1,21 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include <windows.h> +#include "nsNativeAppSupportWin.h" + +1 24 "basilisk.exe.manifest" + +IDI_APPICON ICON FIREFOX_ICO +IDI_DOCUMENT ICON DOCUMENT_ICO +IDI_APPLICATION ICON FIREFOX_ICO +IDI_NEWWINDOW ICON NEWWINDOW_ICO +IDI_NEWTAB ICON NEWTAB_ICO +IDI_PBMODE ICON PBMODE_ICO + +STRINGTABLE DISCARDABLE +BEGIN + IDS_STARTMENU_APPNAME, "@MOZ_APP_DISPLAYNAME@" +END |