Reddit Hot Swap

Changes Reddit's default sorting to hot.

Reddit Hot Swap क्या है?

Reddit Hot Swap Tyler Biscoe द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Changes Reddit's default sorting to hot."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Reddit Hot Swap एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम Reddit Hot Swap Reddit Hot Swap
ID nhggeeacdgnhfjnmchohgibighloaipd
आधिकारिक URL https://chromewebstore.google.com/detail/reddit-hot-swap/nhggeeacdgnhfjnmchohgibighloaipd
विवरण Changes Reddit's default sorting to hot.
फ़ाइल का आकार 187 KB
स्थापना संख्या 204
वर्तमान संस्करण 2.0.0
अंतिम अपडेट 2019-10-22
प्रकाशन तिथि 2019-10-21
रेटिंग 3.25/5 कुल 4 रेटिंग्स
डेवलपर Tyler Biscoe
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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\/*"
    ]
}