EZ-BU

EZ-BU

Accès en un clic aux ressources de Normandie Université.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "EZ-BU",
  "short_name": "EZ-BU",
  "author": "Normandie Université",
  "description": "Accès en un clic aux ressources de Normandie Université.",
  "version": "1.3",
  "default_locale": "fr",
  "icons": {
    "16": "img/ez-bu-black-1x.png",
    "32": "img/ez-bu-black-1x.png",
    "48": "img/ez-bu-black-1x.png",
    "64": "img/ez-bu-black-1x.png",
    "128": "img/ez-bu-black-2x.png"
  },
  "browser_action": {
    "default_title": "EZ-BU",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/vendors/jquery.min.js",
      "js/vendors/lodash.min.js",
      "js/plugin/globals.js",
      "js/plugin/pluginConfig.js",
      "js/plugin/pluginConfigHelper.js",
      "js/plugin/notificationbackground.js",
      "js/plugin/eventPage.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "run_at": "document_idle",
      "matches": [
        "<all_urls>",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/vendors/jquery.min.js",
        "js/vendors/lodash.min.js",
        "js/plugin/globals.js",
        "js/plugin/pluginConfig.js",
        "js/plugin/notification.js",
        "js/plugin/popup.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "permissions": [
    "tabs",
    "*://*/*"
  ],
  "web_accessible_resources": [
    "notification.html",
    "webfonts/*.woff*"
  ]
}