Ungated Guide

Ungated Guide

A guide for going through the Amazon Ungating Process

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Ungated Guide",
  "description": "A guide for going through the Amazon Ungating Process",
  "version": "1.0.0",
  "manifest_version": 2,
  "homepage_url": "http://momane.com/",
  "permissions": [
    "*://app.momane.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://sellercentral.amazon.com/*"
      ],
      "js": [
        "lib/jquery-3.1.0.min.js",
        "text.js",
        "main.js"
      ],
      "css": [
        "main.css"
      ]
    }
  ],
  "icons": {
    "16": "logo.png",
    "128": "logo.png"
  },
  "browser_action": {
    "default_icon": "logo.png",
    "default_title": "Ungated Guide",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "lib/*"
  ]
}