Disable F12

An extension to disable F12 opening the dev console.

Disable F12คืออะไร?

Disable F12 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://nemrod.se และคุณลักษณะหลักของมันคือ "An extension to disable F12 opening the dev console."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Disable F12

ดาวน์โหลดไฟล์ส่วนขยาย Disable F12 ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}