Go back with backspace

Restore the backspace key shortcut to navigate to the previous page.

Hvad er Go back with backspace?

Go back with backspace er en Chrome-udvidelse udviklet af https://namitjuneja.com, og dens hovedfunktion er "Restore the backspace key shortcut to navigate to the previous page.".

Udvidelsesskærmbilleder

screenshot

Download Go back with backspace-udvidelses-CRX-fil

Download Go back with backspace-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Google has removed the ability to go "back" with the backspace key in chrome since v52.

This extension brings back the functionality and allows you to use Backspace key as a shortcut to go back to the previous page.

Usage
BACKSPACE              - Go one step back
Shift + BACKSPACE - Go one step forward                    

Grundlæggende oplysninger om udvidelsen

Navn Go back with backspace Go back with backspace
ID emacifekhnajdlgeejloncjbcnoingnd
Officiel URL https://chromewebstore.google.com/detail/go-back-with-backspace/emacifekhnajdlgeejloncjbcnoingnd
Beskrivelse Restore the backspace key shortcut to navigate to the previous page.
Filstørrelse 4.48 KB
Antal Installationer 5,636
Nuværende Version 0.3.2
Senest Opdateret 2016-08-01
Udgivelsesdato 2016-08-01
Bedømmelse 4.04/5 Samlet 25 Bedømmelser
Udvikler https://namitjuneja.com
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/namitjuneja/chrome-backspace
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Go back with backspace",
    "description": "Restore the backspace key shortcut to navigate to the previous page.",
    "author": "Namit Juneja",
    "version": "0.3.2",
    "manifest_version": 2,
    "minimum_chrome_version": "52",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "128": "icon.png"
    }
}