Display IP Address Plugin

Display IP Address Plugin

This extension will display your current IP Address on the page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Display IP Address Plugin",
  "description": "This extension will display your current IP Address on the page",
  "version": "1.0.12",
  "author": "Justin Munro",
  "content_security_policy": "script-src 'self' https://ipify.org https://jsonip.com https://ipinfo.io/json; object-src 'self'",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "browser_action": {
    "default_title": "Show your IP Address",
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "http://*/",
    "https://*/"
  ]
}