Scrollbar of Contents

Creates clickable heading markers next to the scrollbar.

Scrollbar of Contents란 무엇입니까?

Scrollbar of Contents은(는) Martin Lijanto에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Creates clickable heading markers next to the scrollbar."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Scrollbar of Contents 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension creates clickable markers for all the headings on a webpage and places them proportionately next to the scrollbar.

The markers enable you to jump between different sections of the page and help to quickly find what you are looking for. They are especially useful when navigating long webpages.

Featured in CNET, Lifehacker and Mashable.


How to use:

• After a page is loaded, click on the extension icon on the toolbar to display the heading markers.

• Click on a marker to scroll to the corresponding section.

• You can minimize, hide, or show the markers using these keyboard shortcuts:
  ⁃ show/hide ( Shift + Alt + v )
  ⁃ minimize/maximize ( Shift + Alt + b )

• You can customize the behavior of this extension on the options page.


View the source code, contribute, report issues, or request new features here:
github.com/mlijanto/scrollbar-of-contents

Thanks for your comments and suggestions, keep them coming!                    

확장 프로그램 기본 정보

이름 Scrollbar of Contents Scrollbar of Contents
ID cfmkncejaemmcobmaabfigljmnkeecdm
공식 URL https://chromewebstore.google.com/detail/scrollbar-of-contents/cfmkncejaemmcobmaabfigljmnkeecdm
설명 Creates clickable heading markers next to the scrollbar.
파일 크기 37.38 KB
설치 횟수 8,136
현재 버전 0.3.2
최근 업데이트 2021-04-18
출시 날짜 2019-10-07
평점 4.49/5 총 78 개의 평점
개발자 Martin Lijanto
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/mlijanto/scrollbar-of-contents
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Scrollbar of Contents",
    "version": "0.3.2",
    "description": "Creates clickable heading markers next to the scrollbar.",
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "images\/icon_browser.png",
        "default_title": "Scrollbar of Contents"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/soc.css"
            ],
            "js": [
                "js\/soc.js",
                "js\/filterHeading.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "incognito": "spanning"
}