Spaggiari Voti

Spaggiari Voti

Estensione che riaggiunge il link alla pagine dei voti sul registro elettronico Spaggiari

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "0.3.2",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "default_locale": "it",
  "background": {
    "scripts": [
      "bower_components/bower-google-analytics/analytics.js",
      "scripts/background.js"
    ]
  },
  "permissions": [
    "background",
    "cookies",
    "https://*.spaggiari.eu/*",
    "webRequest",
    "webRequestBlocking"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.spaggiari.eu/home/app/default/menu_webinfoschool_studenti.php*"
      ],
      "css": [
        "styles/main.css",
        "bower_components/jquery-ui/themes/smoothness/jquery-ui.min.css"
      ],
      "js": [
        "bower_components/jquery/dist/jquery.min.js",
        "bower_components/jquery-ui/jquery-ui.min.js",
        "scripts/contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    },
    {
      "matches": [
        "https://*.spaggiari.eu/sol/app/default/documenti_sol.php*"
      ],
      "js": [
        "bower_components/jquery/dist/jquery.min.js",
        "bower_components/jquery-ui/jquery-ui.min.js",
        "scripts/pagelle_script.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ]
}