Backspace to go Back

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

Apa itu Backspace to go Back?

Backspace to go Back adalah ekstensi Chrome yang dikembangkan oleh Razvan Caliman, dan fitur utamanya adalah "Restores browser behavior of navigating to previous page when pressing the Backspace key.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Backspace to go Back

Unduh file ekstensi Backspace to go Back dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Backspace to go Back Backspace to go Back
ID nlffgllnjjkheddehpolbanogdeaogbc
URL Resmi https://chromewebstore.google.com/detail/backspace-to-go-back/nlffgllnjjkheddehpolbanogdeaogbc
Deskripsi Restores browser behavior of navigating to previous page when pressing the Backspace key.
Ukuran File 13.42 KB
Jumlah Instalasi 123,490
Versi Saat Ini 1.1.2
Terakhir Diperbarui 2023-01-17
Tanggal Publikasi 2016-08-17
Penilaian 4.57/5 Total 552 Penilaian
Pengembang Razvan Caliman
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/oslego/chrome-backspace-back
URL Halaman Bantuan https://github.com/oslego/chrome-backspace-back
Bahasa yang Didukung 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
        }
    ]
}