Examine source code of RAP DevKit

Inspect and view changes in RAP DevKit 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",
  "manifest_version": 3,
  "name": "RAP DevKit",
  "description": "DevKit for RAP",
  "version": "1.9.2",
  "permissions": [
    "declarativeNetRequest",
    "declarativeNetRequestFeedback",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "./dist/background.js"
  },
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png"
  },
  "action": {
    "default_icon": {
      "16": "images/16.png",
      "32": "images/32.png",
      "48": "images/48.png"
    },
    "default_popup": "dist/index.html"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "dist/adapter.js"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "dist/runtime.js"
      ]
    }
  ]
}