Examine source code of Big Ideas Math Homework

Inspect and view changes in Big Ideas Math Homework 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": "Big Ideas Math Homework",
  "description": "Complete Big Ideas Math practice assignments offline with the Big Ideas Math Homework app!",
  "version": "1.8",
  "manifest_version": 2,
  "app": {
    "background": {
      "scripts": [
        "background.js"
      ]
    }
  },
  "icons": {
    "16": "bim-16.png",
    "128": "bim-128.png"
  },
  "permissions": [
    "system.network",
    "serial",
    "webview",
    "storage",
    "notifications",
    "alarms",
    "unlimitedStorage",
    "background",
    "*://*/*",
    {
      "fileSystem": [
        "write",
        "retainEntries",
        "directory"
      ]
    }
  ],
  "sockets": {
    "tcpServer": {
      "listen": [
        "*"
      ]
    },
    "tcp": {
      "connect": [
        ""
      ],
      "send": [
        ""
      ]
    }
  }
}