Amazon Quick Copy

Amazon Quick Copy

Automatically copy most fields from an Amazon.com listing & paste them to a Google or Excel Spreadsheet with one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Amazon Quick Copy",
  "version": "0.3.5",
  "manifest_version": 2,
  "description": "Automatically copy most fields from an Amazon.com listing & paste them to a Google or Excel Spreadsheet with one click.",
  "icons": {
    "32": "images/AmazonQuickCopy-3108-32.png",
    "128": "images/AmazonQuickCopy-3108-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "*://www.amazon.com/*"
      ],
      "css": [
        "bower_components/font-awesome/css/font-awesome.css",
        "bower_components/jquery-ui/themes/base/jquery-ui.css",
        "bower_components/intro.js/introjs.css",
        "stylesheets.css"
      ],
      "js": [
        "bower_components/jquery/dist/jquery.js",
        "bower_components/bootstrap/dist/js/bootstrap.js",
        "bower_components/jquery-ui/jquery-ui.js",
        "bower_components/clipboard/dist/clipboard.js",
        "bower_components/bootbox.js/bootbox.js",
        "bower_components/underscore/underscore.js",
        "bower_components/notifyjs/dist/notify.js",
        "bower_components/intro.js/intro.js",
        "scripts/content-scripts/amazon.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "permissions": [
    "*://*.amazon.com/*",
    "*://*.amzquickcopy.com/*",
    "storage",
    "clipboardWrite"
  ],
  "browser_action": {
    "default_title": "Amazon Quick Copy",
    "default_icon": {
      "32": "images/AmazonQuickCopy-3108-32.png",
      "48": "images/AmazonQuickCopy-3108-48.png",
      "96": "images/AmazonQuickCopy-3108-96.png",
      "128": "images/AmazonQuickCopy-3108-128.png"
    }
  },
  "web_accessible_resources": [
    "/images/*",
    "bower_components/*"
  ]
}