Smart Clipboard

Smart Clipboard

'Store and Search' - Stores multiple content copied from web and then allows to preview, copy or run a search on those saved texts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "smartclipboard.html",
    "default_title": "Store and Search contents copied from web"
  },
  "content_scripts": [
    {
      "js": [
        "jquery.js",
        "smartclipboard.js",
        "clip_hu_mini.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "description": "'Store and Search' -  Stores multiple content copied from web and then allows to preview, copy or run a search on those saved texts",
  "icons": {
    "128": "icon_128.png"
  },
  "name": "Smart Clipboard",
  "permissions": [
    "tabs"
  ],
  "version": "1.3"
}