Advertisement
xkeshav

manifest.json

Oct 16th, 2014
326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.   "manifest_version": 2,
  3.   "name": "mask me",
  4.   "description": "This mask extension",
  5.   "version": "1.0",
  6.   "icons": {
  7.     "16": "foto/icon_24.png",
  8.     "48": "foto/icon_48.png"
  9.   },
  10.   "browser_action": {
  11.     "default_icon": "foto/icon_32.png",
  12.     "default_popup": "popup.html",
  13.     "default_title": "give me mask"
  14.   },
  15.   "background": {
  16.     "page": "background.html",
  17.     "persistent": false
  18.   },
  19.   "omnibox": { "keyword" : "mask" },
  20.   "permissions": [
  21.         "tabs",
  22.         "activeTab",
  23.         "topSites",
  24.         "http://*/*",
  25.         "https://*/*"
  26.   ]
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement