Disable F12 Disable F12

Productivity
Version: 1.1
Last Update: 2013-06-19

Overview

Disable F12 is a Chrome extension developed by nemrod. According to the data from Chrome web store, current version of Disable F12 is 1.1, updated on 2013-06-19.
10,000+ users have installed this extension. 66 users have rated this extension with an average rating of .
developer website: nemrod.se

An extension to disable F12 opening the dev console.

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

Rating

66 ratings

Total Installs

10,000+

Information

Last Update

2013-06-19

Current Version

1.1

Size

7.16KiB

Author

nemrod

Website

nemrod.se

Category

Productivity

Latest Reviews

See More

avatar K G
2022-04-27

Doesn't work.

avatar R N
2022-03-03

maybe it works on some sites, but definitely not all. :( I wish it also disabled ctrl shift i and ctrl shift c

avatar Birgit Aun
2021-11-24

I did a restart on the browser just in case, still does not work. Version 96.0.4664.45 (Official Build) (64-bit)

avatar Go. TV
2021-09-07

не работает win 10

avatar Akram
2021-07-07

The extension is not fully working but the source code is provided in the extension creator website.
So, to disable F12 key in your browser simply go to Inspect then Console then paste the following JavaScript code:

window.addEventListener("keydown", keyListener, false);
function keyListener(e)
if(e.keyCode == 123)
e.returnValue = false;