Old Reddit Redirect

Ensure Reddit always loads the old design

Old Reddit Redirectคืออะไร?

Old Reddit Redirect เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tomjwatson และคุณลักษณะหลักของมันคือ "Ensure Reddit always loads the old design"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Old Reddit Redirect

ดาวน์โหลดไฟล์ส่วนขยาย 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
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\/*"
    ]
}