Examine source code of CoursePro Page Builder

Inspect and view changes in CoursePro Page Builder 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": "CoursePro Page Builder",
  "version": "1.0",
  "description": "CoursePro Page Builder",
  "icons": {
    "16": "images/icon-16x16.png",
    "32": "images/icon-32x32.png",
    "48": "images/icon-48x48.png",
    "128": "images/icon-128x128.png"
  },
  "permissions": [
    "*://*/*",
    "webNavigation",
    "storage"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "navigation_collector.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_idle",
      "all_frames": true,
      "js": [
        "pb-contentScript.js"
      ],
      "css": [
        "css/pb-extension.css"
      ]
    }
  ],
  "manifest_version": 2
}