Scroll it!

Extension for automatic scrolling websites with a lazy-load feature used (when you scroll up/down to get new records/items/news)

Scroll it!คืออะไร?

Scroll it! เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Oles และคุณลักษณะหลักของมันคือ "Extension for automatic scrolling websites with a lazy-load feature used (when you scroll up/down to get new records/items/news)"

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

screenshot
screenshot

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

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

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

                        Be the first to check my new extension that helps you fighting a procrastination:
https://chrome.google.com/webstore/detail/procrastilater/bmoajoielkomndjlojhcnibkehhkkaao

Today lots of websites are using lazy-loading technique to show new items/ news/records/ upon scrolling down. 

Sometimes you need to (use cases):
- read previous messages in dialogue (vk/telegram)
- see all user photos since the beginning (instagram)
- check out recent friends news/posts after a weekend (facebook, vk, twitter)
- scroll down the comments (reddit, youtube)
This app allows you to do it.

HOW TO USE:
click your RIGHT mouse button within a page (desirable inside the place with a scroll bar)
select Scroll it -> select option to scroll.
Feel free to use other tabs while it scrolls, it will let you know when it's done (infinite scroll doesn't scroll by itself).

Important: if you chose infinite scrolling - you would like to stop it anytime (stop option from context menu does it).
Also it will let you know if it's stuck somewhere.

Source code is open and feel free to read/clone it from github page.
Feedback is appreciated.                    

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

ชื่อ Scroll it! Scroll it!
ID nlndoolndemidhlomaokpfbicfnjeeed
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/scroll-it/nlndoolndemidhlomaokpfbicfnjeeed
คำอธิบาย Extension for automatic scrolling websites with a lazy-load feature used (when you scroll up/down to get new records/items/news)
ขนาดไฟล์ 43.34 KB
จำนวนการติดตั้ง 6,867
เวอร์ชันปัจจุบัน 1.0.5
อัปเดตครั้งล่าสุด 2017-12-02
วันที่เผยแพร่ 2017-12-01
คะแนน 3.02/5 รวมทั้งหมด 43 คะแนน
ผู้พัฒนา Oles
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/always-oles/ScrollIt
URL หน้าช่วยเหลือ https://github.com/always-oles/ScrollIt
ภาษาที่รองรับ en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scroll it!",
    "version": "1.0.5",
    "manifest_version": 2,
    "description": "__MSG_extension_description__",
    "homepage_url": "https:\/\/github.com\/always-oles\/ScrollIt",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/background\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon19.png",
            "38": "icons\/icon38.png"
        },
        "default_popup": "src\/options\/browser_action.html"
    },
    "options_page": "src\/options\/index.html",
    "permissions": [
        "tabs",
        "contextMenus",
        "notifications",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "src\/inject\/helpers.js",
                "src\/inject\/inject.js"
            ],
            "run_at": "document_end"
        }
    ]
}