Disable F12

An extension to disable F12 opening the dev console.

What is Disable F12?

Disable F12 is a Chrome extension developed by https://nemrod.se, and its main feature is "An extension to disable F12 opening the dev console.".

Extension Screenshots

screenshot

Download Disable F12 Extension CRX File

Download Disable F12 extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Disable F12 Disable F12
ID kpfnljnhmfhomajodmlepkcoflmbjiaf
Official URL https://chromewebstore.google.com/detail/disable-f12/kpfnljnhmfhomajodmlepkcoflmbjiaf
Description An extension to disable F12 opening the dev console.
File Size 7.16 KB
Installation Count 12,131
Current Version 1.1
Last Updated 2013-06-19
Publish Date 2013-06-19
Rating 2.30/5 Total 69 Ratings
Developer https://nemrod.se
Email [email protected]
Payment Type free
Extension Website http://nemrod.se/
Help Page URL http://nemrod.se/chrome-extensions/disable-f12-developer-console-chrome
Supported Languages 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"
            ]
        }
    ]
}