Send URL to Gmail

Send URL to Gmail

This simple extension forwards urls in gmail so you don't have to copy and paste them!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Send URL to Gmail",
  "description": "This simple extension forwards urls in gmail so you don't have to copy and paste them!",
  "version": "0.3",
  "permissions": [
    "tabs",
    "cookies"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "icon.png"
  }
}