DNS Report by DNS Rate

DNS Report by DNS Rate

DNS Report by DNS Rate

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "default_locale": "en",
  "name": "__MSG_extensionName__",
  "short_name": "__MSG_shortExtensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "0.9.6.2",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "background": {
    "scripts": [
      "background.js",
      "punycode.js",
      "tlds.js"
    ],
    "persistent": true
  },
  "minimum_chrome_version": "27",
  "omnibox": {
    "keyword": "dr",
    "icons": {
      "16": "images/icon-16.png",
      "32": "images/icon-32.png",
      "48": "images/icon-48.png",
      "128": "images/icon-128.png"
    }
  },
  "manifest_version": 2,
  "browser_action": {
    "default_title": "__MSG_extensionName__",
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    }
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "js": [
        "content_script.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "options_page": "options.html",
  "author": "DNS Rate"
}