RedditInfinity

Simple, lightweight infinite scrolling for reddit

RedditInfinityคืออะไร?

RedditInfinity เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://devinrousso.com และคุณลักษณะหลักของมันคือ "Simple, lightweight infinite scrolling for reddit"

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

screenshot
screenshot

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

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

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

                        Ever browse Reddit and find yourself annoyed at having to click the "next" button?  If so, please install RedditInfinity.

RedditInfinity is a lightweight extension targeted at "https://www.reddit.com/*" pages that will automatically load the next page when you have scrolled half way down the page.  No more clicking, just scroll.


Version 1.0:
 - Created Extension
 - Infinite scroll will only work on pages that contain a "next" link                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ RedditInfinity RedditInfinity
ID klldlkapcnpaanaeamibkgaljpblgkic
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/redditinfinity/klldlkapcnpaanaeamibkgaljpblgkic
คำอธิบาย Simple, lightweight infinite scrolling for reddit
ขนาดไฟล์ 44.01 KB
จำนวนการติดตั้ง 168
เวอร์ชันปัจจุบัน 1.0.4
อัปเดตครั้งล่าสุด 2016-08-19
วันที่เผยแพร่ 2016-08-19
คะแนน 4.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา https://devinrousso.com
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/dcrousso/RedditInfinity/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "version": "1.0.4",
    "default_locale": "en",
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.reddit.com\/*",
                "https:\/\/*.reddit.com\/*"
            ],
            "js": [
                "scripts\/infinity.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "images\/loading.gif"
    ]
}