Clip Better

Clip Better

Use Clip Better to email link previews from anywhere on the web!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Clip Better",
  "manifest_version": 2,
  "version": "1.2.0",
  "description": "Use Clip Better to email link previews from anywhere on the web!",
  "icons": {
    "16": "icon.png",
    "48": "icon48.png",
    "128": "icon128rt.png"
  },
  "browser_action": {
    "default_title": "Clip Better",
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "gmail.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "http://clipbetter.com/",
    "http://fonts.googleapis.com/",
    "clipboardWrite",
    "storage",
    "tabs"
  ]
}