Old Reddit Redirect
Ensure Reddit always loads the old design
Old Reddit Redirect क्या है?
Old Reddit Redirect tomjwatson द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Ensure Reddit always loads the old design"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Old Reddit Redirect एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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\/*" ] } |