Country IP

Country IP

This extension polls and displays the country your current IP is in

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Country IP",
  "description": "This extension polls and displays the country your current IP is in",
  "version": "1.2",
  "icons": {
    "16": "images/ext_icon_16.png",
    "48": "images/ext_icon_48.png",
    "128": "images/ext_icon_128.png"
  },
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_popup": "popup.html",
    "default_title": "Click for more IP details"
  },
  "background": {
    "scripts": [
      "jquery.min.js",
      "eventPage.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab",
    "tabs",
    "alarms",
    "http://ip-api.com/json/*",
    "https://www.whatismyip.com/images/flags/*",
    "https://ajax.googleapis.com/",
    "https://maps.googleapis.com/maps/api/*"
  ]
}