Firefox Add-ons

My favourite Firefox add-ons/extensions.

General

AdBlock Tips
  • Before creating a filer, check if you can fine-tune the rule, e.g. adding a wildcard * might make it more generic, or blocking a whole domain instead of a subdomain
  • domain##div>a:has-text(/promoted post/): at domain, remove any <div> containing a link with text "promoted post".
Personal individual tweaks
  • Allow CORS with local file:// urls: about:configprivacy.file_unique_originfalse
  • Site Isolation on Firefox: about:configfission.autostarttrue (can check info at about:processes)
  • Disable media autoplay: about:configmedia.autoplay.default0 and media.block-autoplay-until-in-foregroundtrue
  • Force dark mode under Linux: about:configui.systemUsesDarkTheme1
  • Enabling DNS-over-HTTPS
Redirector Redirects
"redirects": [
{
    "description": "Medium -> Scribe",
    "exampleUrl": "https://medium.com/@user/post-123456abcdef",
    "exampleResult": "https://scribe.rip/@user/post-123456abcdef",
    "error": null,
    "includePattern": "^https?://(?:.*\\.)*(?<!link\\.)medium\\.com(/.*)?$",
    "excludePattern": "",
    "patternDesc": "https://scribe.rip/faq",
    "redirectUrl": "https://scribe.rip$1",
    "patternType": "R",
    "processMatches": "noProcessing",
    "disabled": false,
    "grouped": false,
    "appliesTo": [
        "main_frame"
    ]
},
{
    "description": "Youtube -> yewtu.be",
    "exampleUrl": "https://www.youtube.com/watch?v=roBkg-iPrbw",
    "exampleResult": "https://yewtu.be/watch?v=roBkg-iPrbw",
    "error": null,
    "includePattern": "^https://www\\.youtube\\.com/watch\\?v=(.*)?$",
    "excludePattern": "",
    "patternDesc": "https://docs.invidious.io/",
    "redirectUrl": "https://yewtu.be/watch?v=$1",
    "patternType": "R",
    "processMatches": "noProcessing",
    "disabled": false,
    "grouped": false,
    "appliesTo": [
        "main_frame"
    ]
},
{
    "description": "reddit -> old reddit",
    "exampleUrl": "https://www.reddit.com/r/technology/comments/v56sq3/it_costs_110000_to_fully_gearup_in_diablo_immortal/",
    "exampleResult": "https://old.reddit.com/r/technology/comments/v56sq3/it_costs_110000_to_fully_gearup_in_diablo_immortal/",
    "error": null,
    "includePattern": "^https://www\\.reddit\\.com/(.*)$",
    "excludePattern": "",
    "patternDesc": "",
    "redirectUrl": "https://old.reddit.com/$1",
    "patternType": "R",
    "processMatches": "noProcessing",
    "disabled": false,
    "grouped": false,
    "appliesTo": [
        "main_frame"
    ]
}
]
Firefox Add-ons. Author:

Comment