Scroll to next image

Hit Ctrl+Down to scroll the page so the next image is aligned to the top of the window.

Scroll to next imageคืออะไร?

Scroll to next image เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rick และคุณลักษณะหลักของมันคือ "Hit Ctrl+Down to scroll the page so the next image is aligned to the top of the window."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Scroll to next image

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

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

                        This extension adds keyboard shortcuts to scroll the page to the next large image (100+ pixel height) on the page. This is useful when looking at a page with a lot of images, because using PgDn or PgUp will rarely line up the images with the top of the window, causing them to get out of sync with the browser window.

Notes:
Ctrl + down arrow will scroll to the next image.
Ctrl + up arrow moves to the previous image.


Version history:

0.5.0
Re-worked code, because it wasn't working on some newer sites. There's logic to deal with the situation where there are images lined up across, and it was failing. I hope this doesn't break existing sites, but on the ones I tested, it now works the same or better.

0.4.2
Updated to apply to all URLs, not just http[s]

0.4.1:
New feature/bugfix - the webpage now scrolls down even if there are is a grid of pictures. Before it would go image-by-image, which kept the scroll position the same if there were several images on the same row. Now it keeps checking until your scroll position actually changes.

0.3.0:
A small update so that it now works when new images are dynamically added to a page (if there is a "show more images" type link that doesn't refresh the whole page, for example).

If there are any problems or suggestions, contact me at [email protected]                    

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

ชื่อ Scroll to next image Scroll to next image
ID ebopmphlcknnclpifoaadpigdapiclon
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/scroll-to-next-image/ebopmphlcknnclpifoaadpigdapiclon
คำอธิบาย Hit Ctrl+Down to scroll the page so the next image is aligned to the top of the window.
ขนาดไฟล์ 23.19 KB
จำนวนการติดตั้ง 560
เวอร์ชันปัจจุบัน 0.5.0
อัปเดตครั้งล่าสุด 2023-08-12
วันที่เผยแพร่ 2012-08-17
คะแนน 4.69/5 รวมทั้งหมด 16 คะแนน
ผู้พัฒนา Rick
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Scroll to next image",
    "version": "0.5.0",
    "description": "Hit Ctrl+Down to scroll the page so the next image is aligned to the top of the window.",
    "action": {
        "default_icon": "icon128.png"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "imgpgdn.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}