Arrow Browse

Allows use of arrow keys to move to next and previous pages.

Arrow Browseคืออะไร?

Arrow Browse เป็นส่วนขยายของ Chrome ที่พัฒนาโดย benjamin12g และคุณลักษณะหลักของมันคือ "Allows use of arrow keys to move to next and previous pages."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Searches pages for links or buttons that contain some reference to "next" or "previous" and trigger those links/buttons on the pressing of the left or right arrow keys on the keyboard (left for previous, right for next). 

Its great for reading through tutorials, web comics, blogs, video blogs or really any content that comes in a linear series of pages.                    

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

ชื่อ Arrow Browse Arrow Browse
ID mmnojcmflanomipfjmbmnafphfcigage
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/arrow-browse/mmnojcmflanomipfjmbmnafphfcigage
คำอธิบาย Allows use of arrow keys to move to next and previous pages.
ขนาดไฟล์ 11.57 KB
จำนวนการติดตั้ง 25
เวอร์ชันปัจจุบัน 1.1.1
อัปเดตครั้งล่าสุด 2015-02-12
วันที่เผยแพร่ 2015-02-12
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา benjamin12g
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Arrow Browse",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "description": "Allows use of arrow keys to move to next and previous pages.",
    "version": "1.1.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_title": "Arrow Browse",
        "default_popup": "extension.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}