IDN Safe is a browser extension which blocks internationalized domain names to prevent you from visiting probable fake sites.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "__MSG_extensionName__",
"version": "1.5.1",
"manifest_version": 2,
"icons": {
"48": "img/icon_48.png",
"128": "img/icon_128.png",
"512": "img/icon_512.png"
},
"description": "__MSG_extensionDescription__",
"default_locale": "en_US",
"background": {
"scripts": [
"js/constants.js",
"js/punycode.js",
"js/background.js"
]
},
"minimum_chrome_version": "50",
"permissions": [
"storage",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"browser_action": {
"default_title": "IDN Safe",
"default_icon": "img/icon_48.png",
"default_popup": "html/popup.html"
},
"author": "Aykut Çevik",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}