Examine source code of URL2Drive

Inspect and view changes in URL2Drive 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": 2,
  "name": "URL2Drive",
  "version": "0.3",
  "author": "corneliustodd",
  "short_name": "URL2Drive",
  "description": "Import web documents directly to Google Drive. Ideal for white sheets, raw files, and other web-available documents.",
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com https://ajax.googleapis.com https://apis.google.com; object-src 'self'",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "browser_action": {
    "default_icon": {
      "19": "images/icon.16.png",
      "38": "images/icon.48.png"
    },
    "default_title": "Send this document to Drive",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/icon.16.png",
    "48": "images/icon.48.png",
    "128": "images/icon.128.png"
  }
}