From 47d4e71c0df60330680cb45e4f7aaba3ae18104c Mon Sep 17 00:00:00 2001 From: earthlng Date: Tue, 14 Mar 2017 19:51:15 +0100 Subject: [PATCH] Updated 3.1 User Scripts (markdown) --- 3.1-User-Scripts.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/3.1-User-Scripts.md b/3.1-User-Scripts.md index 9c03697..19103d7 100644 --- a/3.1-User-Scripts.md +++ b/3.1-User-Scripts.md @@ -1,9 +1,9 @@ -earthlng will explain what addons can use user scripts +Use [Greasemonkey](https://addons.mozilla.org/en-Us/firefox/addon/greasemonkey/) or something similar to run these ### Conceal history.length This does not break history in any way. It just lies to any JS asking about it. Your actual (max) history is controlled by `browser.sessionhistory.max_entries` which is a per tab setting. -You can test it at [JoDonym](http://ip-check.info/?lang=en) +
You can test it at [JoDonym](http://ip-check.info/?lang=en)
```js // ==UserScript== @@ -22,8 +22,7 @@ Object.defineProperty(history,'length',{ ``` ### Conceal window.name -See [bugzilla 444222](https://bugzilla.mozilla.org/show_bug.cgi?id=444222). -You can test it at [JoDonym](http://ip-check.info/?lang=en) +See [bugzilla 444222](https://bugzilla.mozilla.org/show_bug.cgi?id=444222). You can test it at [JoDonym](http://ip-check.info/?lang=en) ```js // ==UserScript== @@ -58,8 +57,7 @@ Object.defineProperty(window,'name',{ ``` ### Clear window.opener -See [this](https://www.ghacks.net/2017/01/24/web-security-add-relnoopener-to-external-links/) ghacks article about rel=noopener. -You can test it at https://mathiasbynens.github.io/rel-noopener/ +See [this](https://www.ghacks.net/2017/01/24/web-security-add-relnoopener-to-external-links/) ghacks article about rel=noopener.
You can test it at https://mathiasbynens.github.io/rel-noopener/
```js / ==UserScript==