The Groovy URL Snatcher

The Groovy URL Snatcher

Copies a groovy URL: formatted html text based on the title - click the button then paste as rich text

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "The Groovy URL Snatcher",
  "short_name": "Gus_URL_Copy",
  "description": "Copies a groovy URL: formatted html text based on the title - click the button then paste as rich text",
  "version": "1.1.2",
  "browser_action": {
    "default_icon": "gus_logo_large_square_icon_256a.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://gus.my.salesforce.com/*",
        "*://gus.lightning.force.com/*"
      ],
      "js": [
        "jquery-3.1.1.min.js",
        "content.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "clipboardWrite"
  ],
  "icons": {
    "16": "gus_logo_large_square_icon_016a.png",
    "48": "gus_logo_large_square_icon_048a.png",
    "128": "gus_logo_large_square_icon_128a.png"
  }
}