Reddit Hot Swap

Changes Reddit's default sorting to hot.

O que é Reddit Hot Swap?

Reddit Hot Swap é uma extensão do Chrome desenvolvida por Tyler Biscoe, e sua principal característica é "Changes Reddit's default sorting to hot.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Reddit Hot Swap

Baixe arquivos de extensão Reddit Hot Swap 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

                        Reddit changed their default sorting method to "Best". This extension simply restores the default sort back to "hot" where it belongs!                    

Informações Básicas da Extensão

Nome Reddit Hot Swap Reddit Hot Swap
ID nhggeeacdgnhfjnmchohgibighloaipd
URL Oficial https://chromewebstore.google.com/detail/reddit-hot-swap/nhggeeacdgnhfjnmchohgibighloaipd
Descrição Changes Reddit's default sorting to hot.
Tamanho do Arquivo 187 KB
Contagem de Instalações 204
Versão Atual 2.0.0
Última Atualização 2019-10-22
Data de Publicação 2019-10-21
Classificação 3.25/5 Total de 4 Avaliações
Desenvolvedor Tyler Biscoe
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reddit Hot Swap",
    "version": "2.0.0",
    "description": "Changes Reddit's default sorting to hot.",
    "browser_action": {
        "default_icon": "icons\/reddithotswap_48.png",
        "default_popup": "html\/browser-action.html"
    },
    "icons": {
        "16": "icons\/reddithotswap_16.png",
        "48": "icons\/reddithotswap_48.png",
        "128": "icons\/reddithotswap_128.png"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.reddit.com\/*",
                "https:\/\/reddit.com\/*"
            ],
            "css": [],
            "js": [
                "js\/content.reddithotswap.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.reddithotswap.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "js\/*"
    ]
}