larsklein

manifest with unexpected property

Sep 25th, 2018
440
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.03 KB | None | 0 0
  1. {
  2.   "manifest_version": 2,
  3.   "name": "Broccoli",
  4.   "version": "0.1.0",
  5.   "description": "Broccoli tests",
  6.   "browser_action": {
  7.     "default_popup": "./popup.html",
  8.     "default_icon": {
  9.       "16": "img/broccoli16.png",
  10.       "48": "img/broccoli48.png",
  11.       "128": "img/broccoli128.png"
  12.     },
  13.     "default_title": "Broccoli"
  14.   },
  15.   "content_security_policy": "script-src 'self' https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com; object-src 'self'",
  16.   "content_scripts": [
  17.     {
  18.       "css": [
  19.         "extra.css",
  20.         "all.css",
  21.         "bootstrap.min.css"
  22.       ],
  23.       "js": [
  24.         "firebase.js",
  25.         "jquery.min.js",
  26.         "content.js",
  27.         "popper.min.js",
  28.         "bootstrap.min.js"
  29.       ],
  30.       "matches": [
  31.         "https://dlab.epfl.ch/*",
  32.         "https://*.wikipedia.org/*"
  33.       ],
  34.       "permissions": [
  35.         "storage",
  36.         "activeTab"
  37.       ]
  38.     }
  39.   ],
  40.   "background": {
  41.     "scripts": [
  42.       "popup.js"
  43.     ],
  44.     "persistent": false
  45.   }
  46. }
Advertisement
Add Comment
Please, Sign In to add comment