Nextnextnext

The best way to read webcomic archives: with keyboard shortcuts and preloading

Nextnextnextคืออะไร?

Nextnextnext เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jacob.hoffmanandrews และคุณลักษณะหลักของมันคือ "The best way to read webcomic archives: with keyboard shortcuts and preloading"

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

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

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

                        This extension adds two keyboard shortcuts to your browser: Ctrl-Comma and Ctrl-Period (on Mac, Option-Comma and Option-Period). Ctrl-Comma tries to take you to the previous page in a series, and Ctrl-Period tries to take you to the next page in a series.

The extension does this by searching the current page for links that have 'prev' or 'next' in them. Since the extension searches the HTML, it can often find 'prev' or 'next' links even if they don't visibly have those words. For instance, if the link to a previous page is actually an image, but it has hover text that says 'Previous', that will work. Still, this is an approximate method. On some pages the extension may be unable to find an appropriate link, or it may pick the wrong link.

Additionally, once you start using the keyboard shortcuts, the extension will try to preload pages for you for faster reading. This preloading only occurs when you use the shortcuts, not when clicking on links.

This extension is especially useful for reading webcomic archives, where you want to hit 'next' repeatedly and with short delay. But it works for any set of pages that have Previous and Next links.

I hope you enjoy this extension. If you do, please let me know. I'm @j4cob on Twitter.

Code is licensed GPLv3 and available at https://github.com/jsha/nextnextnext.

Icon is by [Julien Miclo](https://thenounproject.com/JulienMiclo/), via [The Noun Project](https://thenounproject.com/)                    

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

ชื่อ Nextnextnext Nextnextnext
ID oaemojfndfnhpnlmcbggdmecoplfciho
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/nextnextnext/oaemojfndfnhpnlmcbggdmecoplfciho
คำอธิบาย The best way to read webcomic archives: with keyboard shortcuts and preloading
ขนาดไฟล์ 7.59 KB
จำนวนการติดตั้ง 19
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2015-09-05
วันที่เผยแพร่ 2015-09-05
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา jacob.hoffmanandrews
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Nextnextnext",
    "description": "The best way to read webcomic archives: with keyboard shortcuts and preloading",
    "version": "1.1",
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        ""
    ],
    "commands": {
        "pager-next": {
            "suggested_key": {
                "default": "Ctrl+Period",
                "mac": "Alt+Period"
            },
            "description": "next page"
        },
        "pager-prev": {
            "suggested_key": {
                "default": "Ctrl+Comma",
                "mac": "Alt+Comma"
            },
            "description": "previous page"
        }
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    }
}