Go Back With Backspace

Re-enables the backspace key as a back navigation button (except when writing text).

Go Back With Backspace là gì?

Go Back With Backspace là một tiện ích mở rộng Chrome được phát triển bởi https://thorium.rocks, và tính năng chính của nó là "Re-enables the backspace key as a back navigation button (except when writing text).".

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

screenshot
screenshot
screenshot
screenshot

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

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

                        Chromium/Chrome extension which re-enables the backspace key as a back navigation button (except when writing text).
 – It is a fork of https://chrome.google.com/webstore/detail/go-back-with-backspace/eekailopagacbcdloonjhbiecobagjci updated to Manifest V3, with small CSS and icon fixes.

 - Alex313031                    

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

Tên Go Back With Backspace Go Back With Backspace
ID pgmlidkcpfcjeeenlbkfmagkeclinnkh
URL Chính Thức https://chromewebstore.google.com/detail/go-back-with-backspace/pgmlidkcpfcjeeenlbkfmagkeclinnkh
Mô tả Re-enables the backspace key as a back navigation button (except when writing text).
Kích Thước Tệp 372 KB
Số Lần Cài Đặt 896
Phiên Bản Hiện Tại 3.0.2
Cập Nhật Lần Cuối 2023-06-20
Ngày Phát Hành 2023-03-09
Đánh Giá 4.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://thorium.rocks
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Alex313031/Chromium-Backspace
URL Trang Trợ Giúp https://github.com/Alex313031/Chromium-Backspace/issues
URL Trang Chính Sách Bảo Mật https://thorium.rocks/COC.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "short_name": "__MSG_extensionShortName__",
    "description": "__MSG_extensionDescription__",
    "default_locale": "en",
    "version": "3.0.2",
    "version_name": "3.0.2",
    "offline_enabled": true,
    "manifest_version": 3,
    "minimum_chrome_version": "91",
    "author": {
        "email": "[email protected]"
    },
    "homepage_url": "https:\/\/github.com\/Alex313031\/Chromium-Backspace",
    "icons": {
        "16": "icons\/icon_16.png",
        "24": "icons\/icon_24.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "64": "icons\/icon_64.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "pages\/popup.html",
        "default_icon": {
            "19": "icons\/icon19.png",
            "38": "icons\/icon38.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "is_editable.js",
                "content_script.js"
            ],
            "all_frames": true,
            "match_origin_as_fallback": true,
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "pages\/options.html",
        "open_in_tab": false
    },
    "permissions": [
        "management",
        "scripting",
        "storage",
        "tabs"
    ],
    "host_permissions": [
        ""
    ]
}