SaveMyClips

SaveMyClips

SaveMyClips keeps track of things that you copy in your clipboard so you don't lose them.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SaveMyClips",
  "description": "SaveMyClips keeps track of things that you copy in your clipboard so you don't lose them.",
  "version": "1.0",
  "icons": {
    "16": "imgs/icon16.png",
    "48": "imgs/icon48.png",
    "128": "imgs/icon128.png"
  },
  "permissions": [
    "clipboardWrite",
    "clipboardRead",
    "notifications"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/copylisten.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "imgs/icon128.png",
    "default_popup": "display.html"
  },
  "background": {
    "scripts": [
      "scripts/clipboard.js",
      "scripts/background.js"
    ]
  },
  "commands": {
    "back": {
      "suggested_key": {
        "default": "Alt+O"
      },
      "description": "Allows the user to go to the previous clipboard item."
    },
    "forward": {
      "suggested_key": {
        "default": "Alt+P"
      },
      "description": "Allows the user to go to the next clipboard item."
    }
  }
}