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.」です。
拡張機能のスクリーンショット
Disable F12拡張機能のCRXファイルをダウンロード
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. ;) 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
}
]
} | |