Old Reddit Redirect
Ensure Reddit always loads the old design
O que é Old Reddit Redirect?
Old Reddit Redirect é uma extensão do Chrome desenvolvida por tomjwatson, e sua principal característica é "Ensure Reddit always loads the old design".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Old Reddit Redirect
Baixe arquivos de extensão Old Reddit Redirect no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Old Reddit Redirect |
ID | dneaehbmnbhcippjikoajpoabadpodje |
URL Oficial | https://chromewebstore.google.com/detail/old-reddit-redirect/dneaehbmnbhcippjikoajpoabadpodje |
Descrição | Ensure Reddit always loads the old design |
Tamanho do Arquivo | 16.21 KB |
Contagem de Instalações | 102,184 |
Versão Atual | 1.8.0 |
Última Atualização | 2023-10-17 |
Data de Publicação | 2020-03-10 |
Classificação | 4.76/5 Total de 276 Avaliações |
Desenvolvedor | tomjwatson |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/tom-james-watson/old-reddit-redirect |
URL da Página de Ajuda | https://github.com/tom-james-watson/old-reddit-redirect/issues |
URL da Página de Política de Privacidade | https://github.com/tom-james-watson/privacy-policy/blob/main/README.md |
Idiomas Suportados | 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\/*" ] } |