Reddit Hot Swap

Changes Reddit's default sorting to hot.

Reddit Hot Swapคืออะไร?

Reddit Hot Swap เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tyler Biscoe และคุณลักษณะหลักของมันคือ "Changes Reddit's default sorting to hot."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Reddit Hot Swap

ดาวน์โหลดไฟล์ส่วนขยาย Reddit Hot Swap ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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\/*"
    ]
}