Backspace to go Back

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

Qu'est-ce que Backspace to go Back ?

Backspace to go Back est une extension Chrome développée par Razvan Caliman, et sa fonction principale est "Restores browser behavior of navigating to previous page when pressing the Backspace key.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Backspace to go Back

Téléchargez les fichiers d'extension Backspace to go Back au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Backspace to go Back Backspace to go Back
ID nlffgllnjjkheddehpolbanogdeaogbc
URL Officiel https://chromewebstore.google.com/detail/backspace-to-go-back/nlffgllnjjkheddehpolbanogdeaogbc
Description Restores browser behavior of navigating to previous page when pressing the Backspace key.
Taille du Fichier 13.42 KB
Nombre d'Installations 123,490
Version Actuelle 1.1.2
Dernière Mise à Jour 2023-01-17
Date de Publication 2016-08-17
Évaluation 4.57/5 Total 552 Évaluations
Développeur Razvan Caliman
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/oslego/chrome-backspace-back
URL de la Page d'Aide https://github.com/oslego/chrome-backspace-back
Langues Prises en Charge 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
        }
    ]
}