Examine source code of NANO Pronote

Inspect and view changes in NANO Pronote source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "NANO Pronote",
  "author": "NANO - p.nanock@gmail.com - nano@nexion.xyz",
  "version": "1.7",
  "description": "Change Pronote theme",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "browser_action": {
    "default_icon": "icons/icon32.png",
    "default_title": "pronotheme",
    "default_popup": "popup/pronote.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.index-education.net/pronote/eleve.html"
      ],
      "js": [
        "content_scripts/script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "content_scripts/style.css"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{4ca732c9-154f-4a58-90d1-b844f2325760}"
    }
  }
}