Tab Grab Paste

Tab Grab Paste

An extention for quckly grabbing the tab title, URLs and a snapshot of the page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tab Grab Paste",
  "description": "An extention for quckly grabbing the tab title, URLs and a snapshot of the page",
  "version": "0.0.0.2",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "browser_action": {
    "default_icon": "128.png"
  },
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "permissions": [
    "storage",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "128.png",
    "options.css",
    "options.html",
    "ScaledCap-Logo.svg"
  ],
  "background": {
    "scripts": [
      "copyscript.js"
    ]
  }
}