Examine source code of Pico

Inspect and view changes in Pico 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pico",
  "description": "A helper extension for SMC students",
  "version": "0.1.3",
  "manifest_version": 3,
  "author": "Njeri Gachoka <njeri@gachoka.org>",
  "minimum_chrome_version": "88.0",
  "background": {
    "service_worker": "./background/index.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://smccis.smc.edu/smcweb/*"
      ],
      "js": [
        "./content/index.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "./icons/16.png",
    "32": "./icons/32.png",
    "48": "./icons/48.png",
    "96": "./icons/96.png",
    "128": "./icons/128.png"
  },
  "permissions": [],
  "host_permissions": [
    "*://www.ratemyprofessors.com/graphql"
  ],
  "action": {
    "default_icon": {
      "32": "./icons/32.png"
    },
    "default_popup": "./popup/index.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/content/newTable.js",
        "/content/style.css"
      ],
      "matches": [
        "https://smccis.smc.edu/*"
      ]
    }
  ]
}