Parrot: Solana NFT Sniper

Parrot: Solana NFT Sniper

The Parrot: Solana NFT Sniper extension notifies you when to buy and sell Solana NFTs. You can set up notifications for the…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Parrot Sniper",
  "name": "Parrot: Solana NFT Sniper",
  "version": "0.1.1",
  "manifest_version": 3,
  "description": "",
  "icons": {
    "192": "./logo192.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "webRequest",
    "notifications",
    "activeTab",
    "webRequest",
    "https://beta.api.hyperspace.xyz/graphql"
  ],
  "host_permissions": [
    "https://*.hyperspace.xyz/*",
    "http://*/*",
    "https://*/*",
    "https://hyperspace.xyz/*",
    "https://*.api.mixpanel.com/*",
    "https://api.mixpanel.com/*",
    "https://*.mixpanel.com/*"
  ],
  "background": {
    "service_worker": "static/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.hyperspace.xyz/*",
        "https://*.mixpanel.com/*"
      ],
      "js": [
        "static/js/content.js"
      ]
    }
  ],
  "action": {
    "default_title": "Mint",
    "default_popup": "index.html"
  },
  "content_security_policy": {
    "script-src": [
      "self",
      "unsafe-eval",
      "https://api.mixpanel.com"
    ],
    "object-src": "self"
  }
}