Examine source code of Gmail Web Clipper by cloudHQ

Inspect and view changes in Gmail Web Clipper by cloudHQ 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": "Gmail Web Clipper by cloudHQ",
  "short_name": "Gmail Web Clipper by cloudHQ",
  "description": "Save websites, articles, etc. directy to Gmail",
  "version": "1.0.2.0",
  "author": "https://www.cloudhq.net",
  "content_scripts": [
    {
      "exclude_globs": [],
      "css": [
        "stylesheets/jquery.dropdown.css",
        "stylesheets/popover.css",
        "stylesheets/border_bottom_animation.css"
      ],
      "include_globs": [],
      "matches": [
        "<all_urls>"
      ],
      "js": [],
      "run_at": "document_end"
    },
    {
      "exclude_globs": [],
      "css": [
        "stylesheets/jquery.dropdown.css",
        "stylesheets/popover.css",
        "stylesheets/border_bottom_animation.css"
      ],
      "include_globs": [],
      "matches": [
        "https://mail.google.com/*",
        "https://inbox.google.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "scripting",
    "storage",
    "background",
    "tabs",
    "activeTab",
    "contextMenus"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "manifest_version": 3,
  "web_accessible_resources": [
    {
      "resources": [
        "javascripts/*",
        "icons/*",
        "*"
      ],
      "matches": [
        "*://*.cloudhq.net/*",
        "https://mail.google.com/*"
      ]
    }
  ],
  "icons": {
    "48": "icons/gmail_web_clipper.png",
    "128": "icons/gmail_web_clipper.png"
  },
  "converted_from_user_script": true,
  "externally_connectable": {
    "matches": [
      "*://*.cloudhq.net/*"
    ]
  },
  "action": {
    "default_icon": "icons/gmail_web_clipper.png",
    "default_title": "Gmail Web Clipper by cloudHQ"
  }
}