Reddit Hot Swap

Changes Reddit's default sorting to hot.

Cos'è Reddit Hot Swap?

Reddit Hot Swap è un'estensione di Chrome sviluppata da Tyler Biscoe, e la sua funzione principale è "Changes Reddit's default sorting to hot.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Reddit Hot Swap

Scarica i file di estensione Reddit Hot Swap in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Reddit Hot Swap Reddit Hot Swap
ID nhggeeacdgnhfjnmchohgibighloaipd
URL Ufficiale https://chromewebstore.google.com/detail/reddit-hot-swap/nhggeeacdgnhfjnmchohgibighloaipd
Descrizione Changes Reddit's default sorting to hot.
Dimensione del File 187 KB
Conteggio Installazioni 204
Versione Corrente 2.0.0
Ultimo Aggiornamento 2019-10-22
Data di Pubblicazione 2019-10-21
Valutazione 3.25/5 Totale 4 Valutazioni
Sviluppatore Tyler Biscoe
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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\/*"
    ]
}