Reddit Hot Swap

Changes Reddit's default sorting to hot.

Co to jest Reddit Hot Swap?

Reddit Hot Swap to rozszerzenie Chrome opracowane przez Tyler Biscoe, a jego główną funkcją jest „Changes Reddit's default sorting to hot.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Reddit Hot Swap

Pobierz pliki rozszerzeń Reddit Hot Swap w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Reddit Hot Swap Reddit Hot Swap
ID nhggeeacdgnhfjnmchohgibighloaipd
Oficjalny URL https://chromewebstore.google.com/detail/reddit-hot-swap/nhggeeacdgnhfjnmchohgibighloaipd
Opis Changes Reddit's default sorting to hot.
Rozmiar pliku 187 KB
Liczba instalacji 204
Aktualna Wersja 2.0.0
Ostatnia Aktualizacja 2019-10-22
Data Publikacji 2019-10-21
Ocena 3.25/5 Łącznie 4 Oceny
Deweloper Tyler Biscoe
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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\/*"
    ]
}