Backspace to go Back

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

Wat is Backspace to go Back?

Backspace to go Back is een Chrome-extensie ontwikkeld door Razvan Caliman, en de belangrijkste functie is "Restores browser behavior of navigating to previous page when pressing the Backspace key.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Backspace to go Back

Download Backspace to go Back-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Backspace to go Back Backspace to go Back
ID nlffgllnjjkheddehpolbanogdeaogbc
Officiële URL https://chromewebstore.google.com/detail/backspace-to-go-back/nlffgllnjjkheddehpolbanogdeaogbc
Beschrijving Restores browser behavior of navigating to previous page when pressing the Backspace key.
Bestandsgrootte 13.42 KB
Aantal Installaties 123,490
Huidige Versie 1.1.2
Laatst Bijgewerkt 2023-01-17
Publicatiedatum 2016-08-17
Beoordeling 4.57/5 Totaal 552 Beoordelingen
Ontwikkelaar Razvan Caliman
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/oslego/chrome-backspace-back
Help Pagina-URL https://github.com/oslego/chrome-backspace-back
Ondersteunde Talen 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
        }
    ]
}