mirror of
https://github.com/arkenfox/user.js.git
synced 2024-11-25 03:51:38 +01:00
Updated 3.3 Updater Scripts (markdown)
parent
b681235b0f
commit
8307ac00cb
@ -131,7 +131,7 @@ a couple things to note here:
|
|||||||
* the netinfo line was merged but the pref has been moved to 4600 in the updated user.js (see info below)
|
* the netinfo line was merged but the pref has been moved to 4600 in the updated user.js (see info below)
|
||||||
* the special comment-out command was also appended at the bottom as a reminder that you gave that command
|
* the special comment-out command was also appended at the bottom as a reminder that you gave that command
|
||||||
|
|
||||||
With `-merge` it's best to always add a comment behind your overrides to make them easily noticeable when you compare your new user.js with one of your backups. A good way is to use the number of the pref's section. That will also make it easier to spot when a pref you want to override gets moved to a commented-out section like `9999: DEPRECATED` or `4600: RFP ALTERNATIVES`, resulting in your override becoming inactive, which may or may not be what you want. (see `dom.netinfo.enabled` in the example) If that's not what you want, you can prepend the `dom.netinfo.enabled` line with a TAB or JS multi-line-comment (or in v4.0+ one or more spaces also works), like this:
|
With `-merge` it's best to always add a comment behind your overrides to make them easily noticeable when you compare your new user.js with one of your backups. A good way is to use the number of the pref's section. That will also make it easier to spot when a pref you want to override gets moved to a commented-out section like `9999: DEPRECATED` or `7000: DON'T BOTHER`, resulting in your override becoming inactive, which may or may not be what you want. (see `dom.netinfo.enabled` in the example) If that's not what you want, you can prepend the `dom.netinfo.enabled` line with a TAB or JS multi-line-comment (or in v4.0+ one or more spaces also works), like this:
|
||||||
```js
|
```js
|
||||||
user_pref("dom.netinfo.enabled", false); // 25xx - enforcing false -- prepended with a TAB
|
user_pref("dom.netinfo.enabled", false); // 25xx - enforcing false -- prepended with a TAB
|
||||||
/* !!! */ user_pref("dom.netinfo.enabled", false); // 25xx - enforcing false -- or a JS-multi-line comment
|
/* !!! */ user_pref("dom.netinfo.enabled", false); // 25xx - enforcing false -- or a JS-multi-line comment
|
||||||
|
Loading…
Reference in New Issue
Block a user