Alternate Navigation Buttons

This extension places a back and forward and goto top button on the page near the bottom of the window

Alternate Navigation Buttons란 무엇입니까?

Alternate Navigation Buttons은(는) scott.c.l.carpenter에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension places a back and forward and goto top button on the page near the bottom of the window"입니다.

확장 프로그램 스크린샷

screenshot

Alternate Navigation Buttons 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This simple extension simply adds 3 fixed navigation buttons (back and forward and to top) to the bottom left corner of the browser window. 

Useful if you find yourself using a tablet PC in a non-tablet mode or like myself browsing with your mouse near the bottom of the screen.                    

확장 프로그램 기본 정보

이름 Alternate Navigation Buttons Alternate Navigation Buttons
ID biojkleepjmhindklmdcomngjkcngjmb
공식 URL https://chromewebstore.google.com/detail/alternate-navigation-butt/biojkleepjmhindklmdcomngjkcngjmb
설명 This extension places a back and forward and goto top button on the page near the bottom of the window
파일 크기 90.63 KB
설치 횟수 226
현재 버전 1.1
최근 업데이트 2016-09-01
출시 날짜 2016-09-01
평점 4.80/5 총 5 개의 평점
개발자 scott.c.l.carpenter
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Alternate Navigation Buttons",
    "description": "This extension places a back and forward and goto top button on the page near the bottom of the window",
    "version": "1.1",
    "web_accessible_resources": [
        "back.png",
        "forward.png",
        "top.png"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "myscript.js"
            ],
            "run_at": "document_start"
        }
    ]
}