Ebay To Amazon

Ebay To Amazon

This extension helps in DropShipping common operations between Ebay to Amazon. includes currently 2 features: - the ability to…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Ebay To Amazon",
  "short_name": "copyfields",
  "version": "1.2",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-2.2.4.min.js",
        "content.js",
        "options.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "clipboardWrite",
    "clipboardRead",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}