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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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\/*"
    ]
}