Examine source code of Amazon Vine Helper

Inspect and view changes in Amazon Vine Helper source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Amazon Vine Helper",
  "description": "Improve the Amazon Vine experience.",
  "version": "3.3.0",
  "permissions": [
    "alarms",
    "contextMenus",
    "storage",
    "tabs",
    "notifications"
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'self'; script-src 'self';  style-src 'self' 'unsafe-inline'; connect-src 'self' https://api.vinehelper.ovh wss://api.vinehelper.ovh https://*.media-amazon.com https://api.llamastories.com; img-src 'self' https://*.media-amazon.com https://*.paypal.com https://*.paypalobjects.com;"
  },
  "icons": {
    "32": "resource/image/icon-32.png",
    "48": "resource/image/icon-48.png",
    "128": "resource/image/icon-128.png"
  },
  "action": {
    "default_popup": "popup/homepage.html",
    "default_title": "Amazon Vine Helper",
    "default_icon": "resource/image/icon-48.png"
  },
  "options_ui": {
    "page": "popup/homepage.html"
  },
  "host_permissions": [
    "*://*.amazon.ca/*",
    "*://*.amazon.it/*",
    "*://*.amazon.es/*",
    "*://*.amazon.de/*",
    "*://*.amazon.fr/*",
    "*://*.amazon.co.uk/*",
    "*://*.amazon.co.jp/*",
    "*://*.amazon.com/*",
    "*://*.amazon.com.au/*",
    "*://*.amazon.com.br/*",
    "*://*.amazon.com.mx/*",
    "*://*.amazon.sg/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "resource/image/*",
        "resource/css/*",
        "view/*",
        "resource/sound/*",
        "page/*",
        "node_modules/vine-styling/desktop/*",
        "node_modules/vine-styling/mobile/*",
        "node_modules/socket.io/client-dist/*",
        "node_modules/canvas-confetti/*",
        "scripts/inj.js",
        "scripts/*"
      ],
      "matches": [
        "*://*.amazon.ca/*",
        "*://*.amazon.it/*",
        "*://*.amazon.es/*",
        "*://*.amazon.de/*",
        "*://*.amazon.fr/*",
        "*://*.amazon.co.uk/*",
        "*://*.amazon.co.jp/*",
        "*://*.amazon.com/*",
        "*://*.amazon.com.au/*",
        "*://*.amazon.com.br/*",
        "*://*.amazon.com.mx/*",
        "*://*.amazon.sg/*"
      ]
    }
  ],
  "background": {
    "type": "module",
    "service_worker": "scripts/vh_service_worker.js"
  },
  "content_scripts": [
    {
      "css": [
        "resource/css/grid.css",
        "resource/css/icon.css",
        "resource/css/main.css",
        "resource/css/modal.css",
        "resource/css/notification.css",
        "resource/css/toolbar.css",
        "resource/css/vinehelper.css"
      ],
      "js": [
        "scripts/bootloaderLoader.js"
      ],
      "matches": [
        "*://*.amazon.ca/vine/*",
        "*://*.amazon.it/vine/*",
        "*://*.amazon.de/vine/*",
        "*://*.amazon.de/*/vine/*",
        "*://*.amazon.es/vine/*",
        "*://*.amazon.fr/vine/*",
        "*://*.amazon.co.uk/vine/*",
        "*://*.amazon.co.jp/vine/*",
        "*://*.amazon.co.jp/*/vine/*",
        "*://*.amazon.com/vine/*",
        "*://*.amazon.com.au/vine/*",
        "*://*.amazon.com.br/vine/*",
        "*://*.amazon.com.mx/vine/*",
        "*://*.amazon.sg/vine/*"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "scripts/preboot_inj.js",
        "scripts/prebootLoader.js"
      ],
      "matches": [
        "*://*.amazon.ca/vine/*",
        "*://*.amazon.it/vine/*",
        "*://*.amazon.de/vine/*",
        "*://*.amazon.de/*/vine/*",
        "*://*.amazon.es/vine/*",
        "*://*.amazon.fr/vine/*",
        "*://*.amazon.co.uk/vine/*",
        "*://*.amazon.co.jp/vine/*",
        "*://*.amazon.co.jp/*/vine/*",
        "*://*.amazon.com/vine/*",
        "*://*.amazon.com.au/vine/*",
        "*://*.amazon.com.br/vine/*",
        "*://*.amazon.com.mx/vine/*",
        "*://*.amazon.sg/vine/*"
      ],
      "run_at": "document_start"
    },
    {
      "css": [
        "resource/css/vinehelper.css",
        "resource/css/main.css"
      ],
      "js": [
        "scripts/review.js"
      ],
      "matches": [
        "*://*.amazon.ca/review/*",
        "*://*.amazon.it/review/*",
        "*://*.amazon.de/review/*",
        "*://*.amazon.de/*/review/*",
        "*://*.amazon.es/review/*",
        "*://*.amazon.fr/review/*",
        "*://*.amazon.co.uk/review/*",
        "*://*.amazon.co.jp/review/*",
        "*://*.amazon.co.jp/*/review/*",
        "*://*.amazon.com/review/*",
        "*://*.amazon.com.au/review/*",
        "*://*.amazon.com.br/review/*",
        "*://*.amazon.com.mx/review/*",
        "*://*.amazon.sg/review/*",
        "*://*.amazon.ca/reviews/edit-review/edit*",
        "*://*.amazon.it/reviews/edit-review/edit*",
        "*://*.amazon.de/reviews/edit-review/edit*",
        "*://*.amazon.de/*/reviews/edit-review/edit*",
        "*://*.amazon.es/reviews/edit-review/edit*",
        "*://*.amazon.fr/reviews/edit-review/edit*",
        "*://*.amazon.co.uk/reviews/edit-review/edit*",
        "*://*.amazon.co.jp/reviews/edit-review/edit*",
        "*://*.amazon.co.jp/*/reviews/edit-review/edit*",
        "*://*.amazon.com/reviews/edit-review/edit*",
        "*://*.amazon.com.au/reviews/edit-review/edit*",
        "*://*.amazon.com.br/reviews/edit-review/edit*",
        "*://*.amazon.com.mx/reviews/edit-review/edit*",
        "*://*.amazon.sg/reviews/edit-review/edit*"
      ],
      "run_at": "document_end"
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}