Old Reddit Redirect

Ensure Reddit always loads the old design

什麼是Old Reddit Redirect?

Old Reddit Redirect是由tomjwatson開發的Chrome擴展程式,該擴展的主要功能是“Ensure Reddit always loads the old design”。

擴展截圖

screenshot

下載Old Reddit Redirect擴展crx文件

下載Old Reddit Redirect擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Old Reddit Redirect Old Reddit Redirect
ID dneaehbmnbhcippjikoajpoabadpodje
官方網址 https://chromewebstore.google.com/detail/old-reddit-redirect/dneaehbmnbhcippjikoajpoabadpodje
簡介 Ensure Reddit always loads the old design
檔案大小 16.21 KB
安裝次數 102,184
目前版本 1.8.0
更新時間 2023-10-17
上架時間 2020-03-10
評分 4.76/5 共 276 次評分
開發者 tomjwatson
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/tom-james-watson/old-reddit-redirect
說明頁面URL https://github.com/tom-james-watson/old-reddit-redirect/issues
隱私政策頁面URL https://github.com/tom-james-watson/privacy-policy/blob/main/README.md
支援的語言 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\/*"
    ]
}