Disable F12

An extension to disable F12 opening the dev console.

Apa itu Disable F12?

Disable F12 adalah ekstensi Chrome yang dikembangkan oleh https://nemrod.se, dan fitur utamanya adalah "An extension to disable F12 opening the dev console.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Disable F12

Unduh file ekstensi Disable F12 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

                        By request from Linus Torvalds (https://plus.google.com/102150693225130002912/posts/7PsYYeavcA9) here's an extension to disable F12 from opening the developer console in Chrome/Chromium.

The screenshot clearly shows that there is no developer console even after pressing F12. ;)                    

Informasi Dasar Ekstensi

Nama Disable F12 Disable F12
ID kpfnljnhmfhomajodmlepkcoflmbjiaf
URL Resmi https://chromewebstore.google.com/detail/disable-f12/kpfnljnhmfhomajodmlepkcoflmbjiaf
Deskripsi An extension to disable F12 opening the dev console.
Ukuran File 7.16 KB
Jumlah Instalasi 12,131
Versi Saat Ini 1.1
Terakhir Diperbarui 2013-06-19
Tanggal Publikasi 2013-06-19
Penilaian 2.30/5 Total 69 Penilaian
Pengembang https://nemrod.se
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi http://nemrod.se/
URL Halaman Bantuan http://nemrod.se/chrome-extensions/disable-f12-developer-console-chrome
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Disable F12",
    "version": "1.1",
    "manifest_version": 2,
    "description": "An extension to disable F12 opening the dev console.",
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "disablef12.js"
            ]
        }
    ]
}