ScrollTrotter

Log the miles you've scrolled down the screen

ScrollTrotterคืออะไร?

ScrollTrotter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Prashant Baid และคุณลักษณะหลักของมันคือ "Log the miles you've scrolled down the screen"

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

screenshot
screenshot
screenshot

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

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

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

                        How many miles do you think we've all scrolled today?

This extension tries to answer this question precisely by: 
- counting the no. of pixels you've scrolled down on a webpage and converting them into an actual physical unit of distance (in mi/km)
- logging your scrolling adventures across the web and displaying the metrics in a very big font (in a non-shaming way)
- displaying the list of your top scroll destinations on the web.

Download this extension and experience the famous scroller's high!!!

Note about the privacy of the extension: your scroll metrics are private to you and only you and cannot be accessed by the author of this extension or any other third-party entity.

Note about the accuracy of the calculation: The actual scroll distance may vary from the calculated distance. Different websites have different implementations for scroll events which makes the exact calculation of the distance very hard and beyond the scope of this extension.

Please review this extension if you found it amusing.                    

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

ชื่อ ScrollTrotter ScrollTrotter
ID mppejknbhapogefdpekbpalahphlhgdm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/scrolltrotter/mppejknbhapogefdpekbpalahphlhgdm
คำอธิบาย Log the miles you've scrolled down the screen
ขนาดไฟล์ 62.27 KB
จำนวนการติดตั้ง 305
เวอร์ชันปัจจุบัน 0.0.3
อัปเดตครั้งล่าสุด 2020-05-05
วันที่เผยแพร่ 2020-05-04
ผู้พัฒนา Prashant Baid
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://sites.google.com/view/onthisday-privacypolicy
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ScrollTrotter",
    "version": "0.0.3",
    "description": "Log the miles you've scrolled down the screen",
    "icons": {
        "16": "img\/logo2.png",
        "48": "img\/logo2.png",
        "128": "img\/logo2.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "dist.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}