summaryrefslogtreecommitdiff
path: root/libre/iceweasel/vendor.js
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-09-03 16:27:22 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-09-03 16:27:22 -0300
commit1c222df4c718aa049f55cc10a6bdf3357ac3a919 (patch)
treed063480e99f467937ae3fa1f82839c1d235b8084 /libre/iceweasel/vendor.js
parent2945507149df876505c048936cc487d76b1cfcdd (diff)
downloadabslibre-1c222df4c718aa049f55cc10a6bdf3357ac3a919.tar.gz
abslibre-1c222df4c718aa049f55cc10a6bdf3357ac3a919.tar.bz2
abslibre-1c222df4c718aa049f55cc10a6bdf3357ac3a919.zip
iceweasel: remove libre suffix and Social API support -> https://lists.parabolagnulinux.org/pipermail/dev/2014-August/002291.html
Diffstat (limited to 'libre/iceweasel/vendor.js')
-rw-r--r--libre/iceweasel/vendor.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/libre/iceweasel/vendor.js b/libre/iceweasel/vendor.js
new file mode 100644
index 000000000..78b5eeb45
--- /dev/null
+++ b/libre/iceweasel/vendor.js
@@ -0,0 +1,22 @@
+// Use LANG environment variable to choose locale
+pref("intl.locale.matchOS", true);
+
+// Disable default browser checking.
+pref("browser.shell.checkDefaultBrowser", false);
+
+// Don't disable our bundled extensions in the application directory
+pref("extensions.autoDisableScopes", 11);
+pref("extensions.shownSelectionUI", true);
+
+// Make sure that safebrowsing is disabled
+pref("browser.safebrowsing.enabled", false);
+pref("browser.safebrowsing.malware.enabled", false);
+
+// Disable localstorage for privacy reasons.
+pref("dom.storage.enabled", false);
+
+// Disable missing nonfree flash notification
+pref("plugins.notifyMissingFlash", false);
+
+// Disable "alt" as a shortcut key to open full menu bar. Conflicts with "alt" as a modifier
+pref("ui.key.menuAccessKeyFocuses", false);