mirror of
https://github.com/arkenfox/user.js.git
synced 2025-04-29 21:43:36 +02:00
move keyword to optional opsec #1707
This commit is contained in:
parent
ddb5acf3ec
commit
5c2912f983
1 changed files with 6 additions and 7 deletions
13
user.js
13
user.js
|
@ -295,13 +295,6 @@ user_pref("network.gio.supported-protocols", ""); // [HIDDEN PREF]
|
||||||
|
|
||||||
/*** [SECTION 0800]: LOCATION BAR / SEARCH BAR / SUGGESTIONS / HISTORY / FORMS ***/
|
/*** [SECTION 0800]: LOCATION BAR / SEARCH BAR / SUGGESTIONS / HISTORY / FORMS ***/
|
||||||
user_pref("_user.js.parrot", "0800 syntax error: the parrot's ceased to be!");
|
user_pref("_user.js.parrot", "0800 syntax error: the parrot's ceased to be!");
|
||||||
/* 0801: disable location bar using search
|
|
||||||
* Don't leak URL typos to a search engine, give an error message instead
|
|
||||||
* Examples: "secretplace,com", "secretplace/com", "secretplace com", "secret place.com"
|
|
||||||
* [NOTE] This does not affect explicit user action such as using search buttons in the
|
|
||||||
* dropdown, or using keyword search shortcuts you configure in options (e.g. "d" for DuckDuckGo)
|
|
||||||
* [SETUP-CHROME] Override this if you trust and use a privacy respecting search engine ***/
|
|
||||||
user_pref("keyword.enabled", false);
|
|
||||||
/* 0802: disable location bar domain guessing
|
/* 0802: disable location bar domain guessing
|
||||||
* domain guessing intercepts DNS "hostname not found errors" and resends a
|
* domain guessing intercepts DNS "hostname not found errors" and resends a
|
||||||
* request (e.g. by adding www or .com). This is inconsistent use (e.g. FQDNs), does not work
|
* request (e.g. by adding www or .com). This is inconsistent use (e.g. FQDNs), does not work
|
||||||
|
@ -918,6 +911,12 @@ user_pref("_user.js.parrot", "5000 syntax error: the parrot's taken 'is last bow
|
||||||
// user_pref("browser.pagethumbnails.capturing_disabled", true); // [HIDDEN PREF]
|
// user_pref("browser.pagethumbnails.capturing_disabled", true); // [HIDDEN PREF]
|
||||||
/* 5020: disable Windows native notifications and use app notications instead [FF111+] [WINDOWS] ***/
|
/* 5020: disable Windows native notifications and use app notications instead [FF111+] [WINDOWS] ***/
|
||||||
// user_pref("alerts.useSystemBackend.windows.notificationserver.enabled", false);
|
// user_pref("alerts.useSystemBackend.windows.notificationserver.enabled", false);
|
||||||
|
/* 5021: disable location bar using search
|
||||||
|
* Don't leak URL typos to a search engine, give an error message instead
|
||||||
|
* Examples: "secretplace,com", "secretplace/com", "secretplace com", "secret place.com"
|
||||||
|
* [NOTE] This does not affect explicit user action such as using search buttons in the
|
||||||
|
* dropdown, or using keyword search shortcuts you configure in options (e.g. "d" for DuckDuckGo) ***/
|
||||||
|
// user_pref("keyword.enabled", false);
|
||||||
|
|
||||||
/*** [SECTION 5500]: OPTIONAL HARDENING
|
/*** [SECTION 5500]: OPTIONAL HARDENING
|
||||||
Not recommended. Overriding these can cause breakage and performance issues,
|
Not recommended. Overriding these can cause breakage and performance issues,
|
||||||
|
|
Loading…
Add table
Reference in a new issue