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ファイルをダウンロード

Better Back Button拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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