Reddit Hot Swap

Changes Reddit's default sorting to hot.

What is Reddit Hot Swap?

Reddit Hot Swap is a Chrome extension developed by Tyler Biscoe, and its main feature is "Changes Reddit's default sorting to hot.".

Extension Screenshots

screenshot

Download Reddit Hot Swap Extension CRX File

Download Reddit Hot Swap extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Reddit Hot Swap Reddit Hot Swap
ID nhggeeacdgnhfjnmchohgibighloaipd
Official URL https://chromewebstore.google.com/detail/reddit-hot-swap/nhggeeacdgnhfjnmchohgibighloaipd
Description Changes Reddit's default sorting to hot.
File Size 187 KB
Installation Count 204
Current Version 2.0.0
Last Updated 2019-10-22
Publish Date 2019-10-21
Rating 3.25/5 Total 4 Ratings
Developer Tyler Biscoe
Email [email protected]
Payment Type free
Supported Languages 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\/*"
    ]
}