Copy Cat

Copy Cat

Quickly copy the title of page and url into your clipboard!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Copy Cat",
  "description": "Quickly copy the title of page and url into your clipboard!",
  "version": "1.8.0",
  "permissions": [
    "tabs",
    "clipboardWrite",
    "notifications",
    "storage",
    "contextMenus"
  ],
  "browser_action": {
    "default_title": "Copy Title and URL",
    "default_icon": "icons/icon.png",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "common.js",
      "background.js"
    ],
    "persistent": false
  },
  "commands": {
    "shortcut-c": {
      "suggested_key": {
        "default": "Alt+Shift+C",
        "mac": "MacCtrl+Shift+C"
      },
      "description": "Copy Rich Text"
    },
    "shortcut-x": {
      "suggested_key": {
        "default": "Alt+Shift+X",
        "mac": "MacCtrl+Shift+X"
      },
      "description": "Copy Title - URL"
    },
    "shortcut-d": {
      "suggested_key": {
        "default": "Alt+Shift+D",
        "mac": "MacCtrl+Shift+D"
      },
      "description": "Copy Markdown"
    },
    "shortcut-z": {
      "suggested_key": {
        "default": "Alt+Shift+Z",
        "mac": "MacCtrl+Shift+Z"
      },
      "description": "Repeat previous copy"
    }
  }
}