ScrollTrotter

Log the miles you've scrolled down the screen

ScrollTrotter란 무엇입니까?

ScrollTrotter은(는) Prashant Baid에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Log the miles you've scrolled down the screen"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

ScrollTrotter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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'"
}