Smooth Scrolling with 60fps

Fix position:fixed by adding transform:translateZ(0) to element. For smooth scrolling with 60fps.

Smooth Scrolling with 60fpsคืออะไร?

Smooth Scrolling with 60fps เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://unterberger.media และคุณลักษณะหลักของมันคือ "Fix position:fixed by adding transform:translateZ(0) to element. For smooth scrolling with 60fps."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Smooth Scrolling with 60fps

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

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

                        This extension optimizes scrolling performance by adding transform:translateZ(0) to layers with position:fixed. this triggers hardware-acceleration and makes scrolling more fluid. 

in the options page you can turn features on and off and decide if you prefer speed or effects. 

v.1.7 removed tabs permission

v1.6 Upgrade to Manifest v3

Please rate the extension and give feedback und bug-reports, this helps me to improve the extension. 

Greetings, 
Daniel                    

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

ชื่อ Smooth Scrolling with 60fps Smooth Scrolling with 60fps
ID dgemgghfpehbgjofnpdeidajmobbkhfg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/smooth-scrolling-with-60f/dgemgghfpehbgjofnpdeidajmobbkhfg
คำอธิบาย Fix position:fixed by adding transform:translateZ(0) to element. For smooth scrolling with 60fps.
ขนาดไฟล์ 49.71 KB
จำนวนการติดตั้ง 2,909
เวอร์ชันปัจจุบัน 1.7
อัปเดตครั้งล่าสุด 2022-11-03
วันที่เผยแพร่ 2016-03-17
คะแนน 4.32/5 รวมทั้งหมด 37 คะแนน
ผู้พัฒนา https://unterberger.media
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://unterberger.media
URL หน้าช่วยเหลือ https://unterberger.media/contact
URL หน้านโยบายความเป็นส่วนตัว https://unterberger.media/privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Smooth Scrolling with 60fps",
    "short_name": "fixfixed",
    "description": "Fix position:fixed by adding transform:translateZ(0) to element. For smooth scrolling with 60fps.",
    "version": "1.7",
    "manifest_version": 3,
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": false
        },
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.end.js"
            ],
            "all_frames": false
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "name": "Click to toggle Smooth Scrolling"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "background.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAu4SN9MDMPChE9uwgOO\/tUkmimmGxoZesict879XoTKiyDM485FRld17+mqZfoohf+wU5f6s9stdFQUpSwAnXUl8m8a\/uw8Uq47cXLeGDWf8nJBEJ4yUKPuRnKF\/SIpT9hGSvbqrucTheOfmpi6rfle+MZQqad+cfOjignJI143qBcnP2kq5z+M+GMStl\/EykOrpWQ3y55WQ9Fxx\/dDRE+MDWsEJa7FI\/uggL0IC6LSNASr+DiiR544J33n7vhMAC9WM\/VGPbFFA\/ndWos7uF3XmEjTj2FuWbuAx\/dy06iTVMfP3htDLz6ffjGONrqOr+PE7bLEJcRR1r3ItmueGTSwIDAQAB",
    "icons": {
        "128": "icon128.png",
        "16": "icon128.png",
        "48": "icon128.png"
    }
}