PunyCode Domain Detection
This extension attempts to detect PunyCode domain phishing attack
PunyCode Domain Detectionとは何ですか?
PunyCode Domain DetectionはWarpdesignによって開発されたChromeの拡張機能で、その主な機能は「This extension attempts to detect PunyCode domain phishing attack」です。
拡張機能のスクリーンショット
PunyCode Domain Detection拡張機能のCRXファイルをダウンロード
PunyCode Domain Detection拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension attempts to detect phishing with unicode domains.
See https://www.xudongz.com/blog/2017/idn-phishing/ for more information. 拡張機能の基本情報
| 名前 | |
| ID | fkenopinnpinfcjneoanjoimhkmdcjne |
| 公式URL | https://chromewebstore.google.com/detail/punycode-domain-detection/fkenopinnpinfcjneoanjoimhkmdcjne |
| 説明 | This extension attempts to detect PunyCode domain phishing attack |
| ファイルサイズ | 14.15 KB |
| インストール数 | 1,411 |
| 現在のバージョン | 0.0.2 |
| 最終更新日 | 2017-04-18 |
| 公開日 | 2017-04-18 |
| 評価 | 4.00/5 合計 5 レビュー |
| 開発者 | Warpdesign |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/warpdesign/puny-phishing-detection |
| ヘルプページのURL | https://github.com/warpdesign/puny-phishing-detection |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "PunyCode Domain Detection",
"description": "This extension attempts to detect PunyCode domain phishing attack",
"version": "0.0.2",
"author": "Nicolas Ramz",
"page_action": {
"default_icon": "icon-128.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"js\/punycode.js",
"js\/content-main.js"
]
}
],
"background": {
"scripts": [
"js\/background.js"
],
"persistent": false
},
"permissions": [
"activeTab",
"https:\/\/ajax.googleapis.com\/"
]
} | |