PunyCode Domain Detection
This extension attempts to detect PunyCode domain phishing attack
Co to jest PunyCode Domain Detection?
PunyCode Domain Detection to rozszerzenie Chrome opracowane przez Warpdesign, a jego główną funkcją jest „This extension attempts to detect PunyCode domain phishing attack”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia PunyCode Domain Detection
Pobierz pliki rozszerzeń PunyCode Domain Detection w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension attempts to detect phishing with unicode domains.
See https://www.xudongz.com/blog/2017/idn-phishing/ for more information. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | fkenopinnpinfcjneoanjoimhkmdcjne |
| Oficjalny URL | https://chromewebstore.google.com/detail/punycode-domain-detection/fkenopinnpinfcjneoanjoimhkmdcjne |
| Opis | This extension attempts to detect PunyCode domain phishing attack |
| Rozmiar pliku | 14.15 KB |
| Liczba instalacji | 1,411 |
| Aktualna Wersja | 0.0.2 |
| Ostatnia Aktualizacja | 2017-04-18 |
| Data Publikacji | 2017-04-18 |
| Ocena | 4.00/5 Łącznie 5 Oceny |
| Deweloper | Warpdesign |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/warpdesign/puny-phishing-detection |
| Adres URL Strony Pomocy | https://github.com/warpdesign/puny-phishing-detection |
| Obsługiwane Języki | 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\/"
]
} | |