Go Back With Backspace

Re-enables the backspace key as a back navigation button (except when writing text).

Τι είναι το Go Back With Backspace;

Το Go Back With Backspace είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://google.com, και η κύρια λειτουργία του είναι "Re-enables the backspace key as a back navigation button (except when writing text).".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Go Back With Backspace

Λήψη αρχείων επέκτασης Go Back With Backspace σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Go back with the backspace button! This extension re-enables the backspace key as a back navigation button -- except if you're writing text.

What's New in 3.0:
==================
* Updated to Manifest V3.

Before Chrome 52, the backspace key navigated back (if you weren't writing text). Many people lost their progress while working online by accidentally pressing backspace and leaving a page -- so we removed the feature from Chrome, and created this extension for those who prefer the old behavior.

This extension can't restore backspace on certain special pages, for example any of the "chrome://" pages such as Settings or Extensions.

About the requested permissions:

"Read and modify all your data": In order to capture backspace on every page, the extension needs to install a little piece of code on each one. It does nothing else with the page, its information, or your typing.

"Manage your apps, extensions, and themes": This lets the extension detect when it has been re-enabled and install its code into tabs that are already open then.

The extension's source code can be viewed at
https://chromium.googlesource.com/chromium/extensions-by-google/+/master/go-back-with-backspace/

By installing this item, you agree to the Google Terms of Service and Privacy Policy at https://www.google.com/intl/en/policies/.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Go Back With Backspace Go Back With Backspace
ID eekailopagacbcdloonjhbiecobagjci
Επίσημο URL https://chromewebstore.google.com/detail/go-back-with-backspace/eekailopagacbcdloonjhbiecobagjci
Περιγραφή Re-enables the backspace key as a back navigation button (except when writing text).
Μέγεθος Αρχείου 21.89 KB
Αριθμός Εγκαταστάσεων 382,609
Τρέχουσα Έκδοση 3.0
Τελευταία Ενημέρωση 2023-11-21
Ημερομηνία Δημοσίευσης 2017-09-14
Αξιολόγηση 3.13/5 Συνολικά 1339 Αξιολογήσεις
Προγραμματιστής https://google.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://policies.google.com/privacy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "default_locale": "en",
    "version": "3.0",
    "manifest_version": 3,
    "minimum_chrome_version": "102",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "19": "icons\/icon19.png",
            "38": "icons\/icon38.png"
        },
        "default_popup": "pages\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "is_editable.js",
                "content_script.js"
            ],
            "all_frames": true,
            "match_origin_as_fallback": true,
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "pages\/options.html",
        "open_in_tab": false
    },
    "permissions": [
        "management",
        "scripting",
        "storage",
        "tabs"
    ],
    "host_permissions": [
        ""
    ]
}