Go back with backspace

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

Vad är Go back with backspace?

Go back with backspace är en Chrome-tillägg utvecklad av https://namitjuneja.com, och dess huvudfunktion är "Restore the backspace key shortcut to navigate to the previous page.".

Tilläggsskärmbilder

screenshot

Ladda ner Go back with backspace-förlängningens CRX-fil

Ladda ner Go back with backspace-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Go back with backspace Go back with backspace
ID emacifekhnajdlgeejloncjbcnoingnd
Officiell webbadress https://chromewebstore.google.com/detail/go-back-with-backspace/emacifekhnajdlgeejloncjbcnoingnd
Beskrivning Restore the backspace key shortcut to navigate to the previous page.
Filstorlek 4.48 KB
Antal Installationer 5,636
Aktuell Version 0.3.2
Senast Uppdaterad 2016-08-01
Publiceringsdatum 2016-08-01
Betyg 4.04/5 Totalt 25 Betyg
Utvecklare https://namitjuneja.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/namitjuneja/chrome-backspace
Stödda Språk 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"
    }
}