Old Reddit Redirect

Ensure Reddit always loads the old design

Vad är Old Reddit Redirect?

Old Reddit Redirect är en Chrome-tillägg utvecklad av tomjwatson, och dess huvudfunktion är "Ensure Reddit always loads the old design".

Tilläggsskärmbilder

screenshot

Ladda ner Old Reddit Redirect-förlängningens CRX-fil

Ladda ner Old Reddit Redirect-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Dislike Reddit's redesign? Old Reddit Redirect will ensure that you always load the old (old.reddit.com) design instead.

Forces all reddit.com links to old.reddit.com, including navigating to the site, opening links or using old bookmarks.

Unlike the account setting for turning off the design, this works regardless of whether you are logged in or not or in incognito mode.

There are also a few minor quality of life improvements:

- Remove the undismissable cookie banner
- Prevent reddit from rendering raw image URLs as HTML
- Rewrite links to galleries to the raw old reddit comments page

Old Reddit Redirect is free and open source software. The code is available at https://github.com/tom-james-watson/old-reddit-redirect. Pull requests are more than welcome.                    

Grundläggande Information om Tillägg

Namn Old Reddit Redirect Old Reddit Redirect
ID dneaehbmnbhcippjikoajpoabadpodje
Officiell webbadress https://chromewebstore.google.com/detail/old-reddit-redirect/dneaehbmnbhcippjikoajpoabadpodje
Beskrivning Ensure Reddit always loads the old design
Filstorlek 16.21 KB
Antal Installationer 102,184
Aktuell Version 1.8.0
Senast Uppdaterad 2023-10-17
Publiceringsdatum 2020-03-10
Betyg 4.76/5 Totalt 276 Betyg
Utvecklare tomjwatson
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/tom-james-watson/old-reddit-redirect
Hjälpsida URL https://github.com/tom-james-watson/old-reddit-redirect/issues
URL till Sekretesspolicy Sidan https://github.com/tom-james-watson/privacy-policy/blob/main/README.md
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Old Reddit Redirect",
    "description": "Ensure Reddit always loads the old design",
    "version": "1.8.0",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/old.reddit.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "*:\/\/reddit.com\/*",
        "*:\/\/www.reddit.com\/*",
        "*:\/\/np.reddit.com\/*",
        "*:\/\/amp.reddit.com\/*",
        "*:\/\/i.reddit.com\/*",
        "*:\/\/i.redd.it\/*",
        "*:\/\/preview.redd.it\/*"
    ]
}