Better Back Button

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

Better Back Button là gì?

Better Back Button là một tiện ích mở rộng Chrome được phát triển bởi shawn.hoover, và tính năng chính của nó là "A history stack that doesn't discard the forward entries when you navigate.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Better Back Button

Tải xuống các tệp mở rộng Better Back Button dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Better Back Button Better Back Button
ID mnjmflfpbdlhinbldepdfegnhldplgnd
URL Chính Thức https://chromewebstore.google.com/detail/better-back-button/mnjmflfpbdlhinbldepdfegnhldplgnd
Mô tả A history stack that doesn't discard the forward entries when you navigate.
Kích Thước Tệp 46.88 KB
Số Lần Cài Đặt 270
Phiên Bản Hiện Tại 0.4
Cập Nhật Lần Cuối 2015-08-01
Ngày Phát Hành 2015-08-01
Đánh Giá 4.83/5 Tổng số 6 Đánh Giá
Nhà Phát Triển shawn.hoover
Loại Thanh Toán free
Trang Web Mở Rộng https://bitbucket.org/shoover/better-back-button
Ngôn Ngữ Được Hỗ Trợ 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"
}