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」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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\/*" ] } |