Disable F12

An extension to disable F12 opening the dev console.

Disable F12란 무엇입니까?

Disable F12은(는) https://nemrod.se에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension to disable F12 opening the dev console."입니다.

확장 프로그램 스크린샷

screenshot

Disable F12 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

확장 프로그램 기본 정보

이름 Disable F12 Disable F12
ID kpfnljnhmfhomajodmlepkcoflmbjiaf
공식 URL https://chromewebstore.google.com/detail/disable-f12/kpfnljnhmfhomajodmlepkcoflmbjiaf
설명 An extension to disable F12 opening the dev console.
파일 크기 7.16 KB
설치 횟수 12,131
현재 버전 1.1
최근 업데이트 2013-06-19
출시 날짜 2013-06-19
평점 2.30/5 총 69 개의 평점
개발자 https://nemrod.se
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://nemrod.se/
도움말 페이지 URL http://nemrod.se/chrome-extensions/disable-f12-developer-console-chrome
지원되는 언어 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"
            ]
        }
    ]
}