MyIP Extension

MyIP Extension

Chrome Extension that shows your external IP and geolocation

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MyIP Extension",
  "version": "1.0.5",
  "manifest_version": 2,
  "description": "Chrome Extension that shows your external IP and geolocation",
  "homepage_url": "http://www.TravelingTechGuy.com",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    },
    "default_title": "Show my IP",
    "default_popup": "popup.html"
  },
  "permissions": [
    "clipboardWrite",
    "http://myip.travelingtechguy.com/"
  ]
}