SwipeHistory

Emulate macbook/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll.

SwipeHistoryคืออะไร?

SwipeHistory เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rasmus Johanson และคุณลักษณะหลักของมันคือ "Emulate macbook/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll."

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

screenshot

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

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

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

                        Emulate macbook/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll. You need to enable vertical scroll from your touchpad settings, otherwise the extension won't work. The sensitivity depends on myriad of settings, often operating system and touchpad drivers.                    

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

ชื่อ SwipeHistory SwipeHistory
ID fhmlogipcjkneapddafhpfldafgbekfo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/swipehistory/fhmlogipcjkneapddafhpfldafgbekfo
คำอธิบาย Emulate macbook/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll.
ขนาดไฟล์ 117 KB
จำนวนการติดตั้ง 256
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2020-11-18
วันที่เผยแพร่ 2020-03-01
คะแนน 4.80/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Rasmus Johanson
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/johanson/SwipeHistory
URL หน้าช่วยเหลือ https://github.com/johanson/SwipeHistory
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SwipeHistory",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Emulate macbook\/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll.",
    "author": "Rasmus Johanson",
    "homepage_url": "https:\/\/github.com\/johanson\/",
    "minimum_chrome_version": "75",
    "options_ui": {
        "page": "settings\/settings.html",
        "chrome_style": true
    },
    "icons": {
        "128": "assets\/icon_128.png"
    },
    "browser_action": {
        "default_popup": "settings\/settings.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "inject.js"
            ],
            "match_about_blank": true
        }
    ]
}