Examine source code of Utility Engine for Web Apps

Inspect and view changes in Utility Engine for Web Apps 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
{
  "background": {
    "service_worker": "js/bg.js"
  },
  "default_locale": "en",
  "description": "__MSG_ext_description__",
  "icons": {
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "js/inject.js"
      ],
      "all_frames": false,
      "matches": [
        "*://vimeotodrive.atomurl.net/*",
        "*://filetodrive.thetimetube.com/*",
        "*://videotogif.thetimetube.com/*",
        "*://imclient.herokuapp.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "iframe.html",
        "js/iframe.js"
      ],
      "matches": [
        "*://vimeotodrive.atomurl.net/*",
        "*://filetodrive.thetimetube.com/*",
        "*://videotogif.thetimetube.com/*",
        "*://imclient.herokuapp.com/*"
      ]
    }
  ],
  "name": "__MSG_ext_name__",
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "permissions": [
    "storage",
    "tabs"
  ],
  "update_url": "http://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "minimum_chrome_version": "88.0.0.0",
  "version": "1.0.3.4"
}