GwardaApp - Amazon Research & Analytics

GwardaApp - Amazon Research & Analytics

Discover Amazon product info, find best prices, leverage SEO keywords, locate top suppliers with Reverse ASIN, and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "0.9.5",
  "default_locale": "en",
  "icons": {
    "128": "/assets/img/icons/icon128.png"
  },
  "action": {
    "default_popup": "/content/popup.html",
    "default_icon": "/assets/img/icons/icon128.png"
  },
  "options_ui": {
    "page": "/content/preferences.html",
    "open_in_tab": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://amazon.com/*",
        "*://*.amazon.com/*"
      ],
      "js": [
        "/assets/js/content.js"
      ],
      "css": [
        "/assets/styles/main.css"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "/assets/js/background.js"
  },
  "permissions": [
    "management",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/assets/*",
        "/content/*.html",
        "/assets/js/content.js",
        "/assets/img/loader.gif"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}