Backspace to go Back

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

Cos'è Backspace to go Back?

Backspace to go Back è un'estensione di Chrome sviluppata da Razvan Caliman, e la sua funzione principale è "Restores browser behavior of navigating to previous page when pressing the Backspace key.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Backspace to go Back

Scarica i file di estensione Backspace to go Back in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Backspace to go Back Backspace to go Back
ID nlffgllnjjkheddehpolbanogdeaogbc
URL Ufficiale https://chromewebstore.google.com/detail/backspace-to-go-back/nlffgllnjjkheddehpolbanogdeaogbc
Descrizione Restores browser behavior of navigating to previous page when pressing the Backspace key.
Dimensione del File 13.42 KB
Conteggio Installazioni 123,490
Versione Corrente 1.1.2
Ultimo Aggiornamento 2023-01-17
Data di Pubblicazione 2016-08-17
Valutazione 4.57/5 Totale 552 Valutazioni
Sviluppatore Razvan Caliman
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/oslego/chrome-backspace-back
URL della Pagina di Aiuto https://github.com/oslego/chrome-backspace-back
Lingue Supportate 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
        }
    ]
}