Advertisement
tolikpunkoff

final manifest.json

Oct 1st, 2019
711
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.65 KB | None | 0 0
  1. {
  2.   "manifest_version": 2,
  3.   "name": "External IP GeoIP",
  4.   "description": "Display you external IP and IP country",
  5.   "version": "0.0.1",
  6.   "icons": {
  7.     "48": "icons/48.png",
  8.     "96": "icons/96.png"
  9.   },
  10.   "browser_action": {
  11.     "default_icon": "flags/0none.png",
  12.     "default_title": "External IP GeoIP",
  13.     "default_popup": "ip_popup.html"
  14.   },
  15.   "background": {
  16.     "scripts": [
  17.       "jquery-3.4.1.min.js",
  18.       "ip_background.js"
  19.     ]
  20.   },
  21.   "permissions": [
  22.     "activeTab",
  23.     "tabs",
  24.     "storage",
  25.     "<all_urls>"
  26.   ],
  27.   "applications": {
  28.       "gecko": {
  29.           "id": "external-ip-geoip@tolik-punkoff.com"
  30.       }
  31.   }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement