Better Back Button

A history stack that doesn't discard the forward entries when you navigate.

Better Back Button란 무엇입니까?

Better Back Button은(는) shawn.hoover에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A history stack that doesn't discard the forward entries when you navigate."입니다.

확장 프로그램 스크린샷

screenshot

Better Back Button 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Have you ever noticed how browser history disappears when you're clicking back and forward a lot and then click on a link on a page? This extension helps by making sure your most recently visited sites stay available in one handy dropdown. You can skip opening a new tab for everything under the sun, knowing you won't lose track of where you've been.

See the web site for keyboard usage.

Derived from Dropdown List of Most Visited Links.                    

확장 프로그램 기본 정보

이름 Better Back Button Better Back Button
ID mnjmflfpbdlhinbldepdfegnhldplgnd
공식 URL https://chromewebstore.google.com/detail/better-back-button/mnjmflfpbdlhinbldepdfegnhldplgnd
설명 A history stack that doesn't discard the forward entries when you navigate.
파일 크기 46.88 KB
설치 횟수 270
현재 버전 0.4
최근 업데이트 2015-08-01
출시 날짜 2015-08-01
평점 4.83/5 총 6 개의 평점
개발자 shawn.hoover
결제 유형 free
확장 프로그램 웹 사이트 https://bitbucket.org/shoover/better-back-button
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better Back Button",
    "version": "0.4",
    "author": "Shawn Hoover",
    "manifest_version": 2,
    "description": "A history stack that doesn't discard the forward entries when you navigate.",
    "icons": {
        "19": "icon19.png",
        "38": "icon38.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs",
        "chrome:\/\/favicon\/"
    ],
    "browser_action": {
        "default_icon": "icon19.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html"
}