Reddit Enhancements Lite (RELite)
View/scroll reddit without killing your browser.
Reddit Enhancements Lite (RELite)คืออะไร?
Reddit Enhancements Lite (RELite) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย RELite และคุณลักษณะหลักของมันคือ "View/scroll reddit without killing your browser."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Reddit Enhancements Lite (RELite)
ดาวน์โหลดไฟล์ส่วนขยาย Reddit Enhancements Lite (RELite) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
                        I only used to use Reddit Enhancement Suite to infinitely scroll reddit, resize images, and view inline gifs/videos/imgur albums, etc.
RES used to be great. Now, I find that I have problems with Reddit Enhancement Suite using a high amount of CPU/memory, and craps out after about 3 pages of loaded content. So I made RELite. Think of it as an alternative to Reddit Enhancement Suite (though in no way affiliated with it) that uses a hell of a lot less CPU/memory. 
From benchmarking with 1000 items loaded, RELite used 43.6% less memory, and 34.1% less CPU than RES. 
This extension does the following:
    View images in-line
    View gifs in-line
    View YouTube videos in-line
    View Imgur albums in-line
    View reddit static/reddit images/reddit hosted images in-line (at the time of writing not supported by RES)
    Use far less memory/CPU than Reddit Enhancement Suite
    Resize all images/videos/gifs
    Preload all the things!
    Doesn't track you. Seriously, screw Reddit outbound link tracking.
    Less permissions required (why do *some* apps require access to my full browsing history? This just accesses *.reddit.com, *.imgur.com, and *.gifycat.com)
Any feature requests/bugs please send an email to [email protected]. Nb. disable RES to work properly. It is still being worked on, so any constructive criticism is seriously welcome. Thanks!                     ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ |  | 
| ID | dgdholpcdmhcmpceilhebneggabenide | 
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/reddit-enhancements-lite/dgdholpcdmhcmpceilhebneggabenide | 
| คำอธิบาย | View/scroll reddit without killing your browser. | 
| ขนาดไฟล์ | 62.65 KB | 
| จำนวนการติดตั้ง | 1,246 | 
| เวอร์ชันปัจจุบัน | 1.11 | 
| อัปเดตครั้งล่าสุด | 2016-08-05 | 
| วันที่เผยแพร่ | 2016-08-05 | 
| คะแนน | 4.30/5 รวมทั้งหมด 23 คะแนน | 
| ผู้พัฒนา | RELite | 
| อีเมล | [email protected] | 
| ประเภทการชำระเงิน | free | 
| ภาษาที่รองรับ | en-US | 
| manifest.json | |
| {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reddit Enhancements Lite (RELite)",
    "description": "View\/scroll reddit without killing your browser.",
    "version": "1.11",
    "manifest_version": 2,
    "version_name": "1.11",
    "browser_action": {
        "default_icon": "Misc\/Resources\/logo.png",
        "default_title": "Reddit Enhancements Lite"
    },
    "icons": {
        "128": "Misc\/Resources\/logo.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.reddit.com\/*"
            ],
            "js": [
                "Misc\/Resources\/jquery-2.1.4.min.js",
                "Helpers.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "HTTPProcessing\/hookRequests.js"
        ],
        "persistent": true
    },
    "permissions": [
        "*:\/\/*.reddit.com\/*",
        "*:\/\/*.reddituploads.com\/*",
        "*:\/\/*.imgur.com\/*",
        "webRequest",
        "webRequestBlocking",
        "storage"
    ],
    "web_accessible_resources": [
        "\/Misc\/Resources\/left.jpg",
        "\/Misc\/Resources\/right.jpg"
    ]
} | |