Disable F12
An extension to disable F12 opening the dev console.
Vad är Disable F12?
Disable F12 är en Chrome-tillägg utvecklad av https://nemrod.se, och dess huvudfunktion är "An extension to disable F12 opening the dev console.".
Tilläggsskärmbilder
Ladda ner Disable F12-förlängningens CRX-fil
Ladda ner Disable F12-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. ;)
Grundläggande Information om Tillägg
Namn | Disable F12 |
ID | kpfnljnhmfhomajodmlepkcoflmbjiaf |
Officiell webbadress | https://chromewebstore.google.com/detail/disable-f12/kpfnljnhmfhomajodmlepkcoflmbjiaf |
Beskrivning | An extension to disable F12 opening the dev console. |
Filstorlek | 7.16 KB |
Antal Installationer | 12,131 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2013-06-19 |
Publiceringsdatum | 2013-06-19 |
Betyg | 2.30/5 Totalt 69 Betyg |
Utvecklare | https://nemrod.se |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | http://nemrod.se/ |
Hjälpsida URL | http://nemrod.se/chrome-extensions/disable-f12-developer-console-chrome |
Stödda Språk | 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" ] } ] } |