Disable F12

An extension to disable F12 opening the dev console.

Co to jest Disable F12?

Disable F12 to rozszerzenie Chrome opracowane przez https://nemrod.se, a jego główną funkcją jest „An extension to disable F12 opening the dev console.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Disable F12

Pobierz pliki rozszerzeń Disable F12 w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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. ;)                    

Podstawowe informacje o rozszerzeniu

Nazwa Disable F12 Disable F12
ID kpfnljnhmfhomajodmlepkcoflmbjiaf
Oficjalny URL https://chromewebstore.google.com/detail/disable-f12/kpfnljnhmfhomajodmlepkcoflmbjiaf
Opis An extension to disable F12 opening the dev console.
Rozmiar pliku 7.16 KB
Liczba instalacji 12,131
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2013-06-19
Data Publikacji 2013-06-19
Ocena 2.30/5 Łącznie 69 Oceny
Deweloper https://nemrod.se
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://nemrod.se/
Adres URL Strony Pomocy http://nemrod.se/chrome-extensions/disable-f12-developer-console-chrome
Obsługiwane Języki 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"
            ]
        }
    ]
}