Kiwi SUAP

Extensão para lançamento de notas no SUAP
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": "Kiwi SUAP",
  "version": "1.5.5",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAn212CqxiAq7rEXNUXPbTfCXrnm270DoTMJ7X4gFgyhEbQmGB5gBxLSqMoEPAHIPn3yin6Zef0fy29PAkcjTKddbcnNYILFUvzr7HVcgIbpWMniGqMrhCTm9HJJD7cAKh12a2JOVHLj52G2mcWGWRKi4v0t43mqOeV4owqmW37we2fi+ANltJGBjFrsAYNAC4jkJZrcZf6wiwxDNufxsKvOHYvxwLZkgl2n1SXSqTb+POPlCvED9N1lc4JFPEI6a+z+ysysWi09/mWhFEVXyKBE1RtBtUxtW+KdlktB8uRVMsMPG4d0DsHkiQzzsA5ELhHca5vhaBtfl4NfhhpiFMvwIDAQAB",
  "description": "Extensão para lançamento de notas no SUAP",
  "oauth2": {
    "client_id": "778238850737-cggi0uf5jnj837pvha51tpf00d25goba.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.profile",
      "https://www.googleapis.com/auth/classroom.courses.readonly",
      "https://www.googleapis.com/auth/classroom.coursework.students.readonly",
      "https://www.googleapis.com/auth/classroom.rosters.readonly"
    ]
  },
  "permissions": [
    "identity",
    "activeTab",
    "tabs"
  ],
  "action": {
    "default_icon": "images/16.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://suap.ifsuldeminas.edu.br/*",
        "https://*.suapdev.ifsuldeminas.edu.br/*"
      ],
      "js": [
        "vendors/js/jquery.js",
        "foreground.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "manifest_version": 3
}