Backspace to go Back

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

What is Backspace to go Back?

Backspace to go Back is a Chrome extension developed by Razvan Caliman, and its main feature is "Restores browser behavior of navigating to previous page when pressing the Backspace key.".

Extension Screenshots

screenshot

Download Backspace to go Back Extension CRX File

Download Backspace to go Back extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Backspace to go Back Backspace to go Back
ID nlffgllnjjkheddehpolbanogdeaogbc
Official URL https://chromewebstore.google.com/detail/backspace-to-go-back/nlffgllnjjkheddehpolbanogdeaogbc
Description Restores browser behavior of navigating to previous page when pressing the Backspace key.
File Size 13.42 KB
Installation Count 123,490
Current Version 1.1.2
Last Updated 2023-01-17
Publish Date 2016-08-17
Rating 4.57/5 Total 552 Ratings
Developer Razvan Caliman
Email [email protected]
Payment Type free
Extension Website https://github.com/oslego/chrome-backspace-back
Help Page URL https://github.com/oslego/chrome-backspace-back
Supported Languages 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
        }
    ]
}