Backspace to go Back

Restores browser behavior of navigating to previous page when pressing the Backspace key.

Backspace to go Back là gì?

Backspace to go Back là một tiện ích mở rộng Chrome được phát triển bởi Razvan Caliman, và tính năng chính của nó là "Restores browser behavior of navigating to previous page when pressing the Backspace key.".

Ả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 Backspace to go Back

Tải xuống các tệp mở rộng Backspace to go Back 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

                        This extension requires permissions to inject a piece of code in all of the pages you visit. If that freaks you out, that's ok. Handing over those permissions freaks me out too.

You can choose to install this extension from source (it's very short) to make sure it's not doing anything malicious. 
See: https://github.com/oslego/chrome-backspace-back#from-source                    

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

Tên Backspace to go Back Backspace to go Back
ID nlffgllnjjkheddehpolbanogdeaogbc
URL Chính Thức https://chromewebstore.google.com/detail/backspace-to-go-back/nlffgllnjjkheddehpolbanogdeaogbc
Mô tả Restores browser behavior of navigating to previous page when pressing the Backspace key.
Kích Thước Tệp 13.42 KB
Số Lần Cài Đặt 123,490
Phiên Bản Hiện Tại 1.1.2
Cập Nhật Lần Cuối 2023-01-17
Ngày Phát Hành 2016-08-17
Đánh Giá 4.57/5 Tổng số 552 Đánh Giá
Nhà Phát Triển Razvan Caliman
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/oslego/chrome-backspace-back
URL Trang Trợ Giúp https://github.com/oslego/chrome-backspace-back
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Backspace to go Back",
    "version": "1.1.2",
    "author": "Razvan Caliman",
    "description": "Restores browser behavior of navigating to previous page when pressing the Backspace key.",
    "minimum_chrome_version": "88",
    "icons": {
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png",
        "256": "icon256.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        }
    ]
}