MagicSniper

Sniper and score indicator on Magic Eden.s

¿Qué es MagicSniper?

MagicSniper es una extensión de Chrome desarrollada por https://magicsniper.org, y su función principal es "Sniper and score indicator on Magic Eden.s".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión MagicSniper

Descarga archivos de extensión MagicSniper en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        A simple indicator useful to flip NFTs on Magic Eden without breaking your head. 
Just go to a collection, then you will automatically see a score below each nft. It is a score between 0 and 100 and the closer you get to 100 the better it would be to flip that nft. 

You can also click on the extension to filter and select only the NFTs above a score you choose. You can also quick buy the nft you want in one-click.

Requirements:

Currently it only works with collections on which the floor price is displayed above. As the rarity is an important part of the score calculation, the rarity is also needed, and for now we only support Moonrank.

Two examples of NFT flipping strategies with Magic Sniper:

- Sort listings by "Moonrank: Rare to common" AND filter results with a maximum price close to the floor price (e.g. if the floor price is 4, display only nfts listed at 7 maximum).

- Sort results by "Recent listings". This is an effective strategy especially for fast snipers, just spam the "search" button on the extension after inputting above which score you want to filter.

What will be added in futures updates?

We are currently working on a system that refreshes every second without you having to re-filter each time to get the new results.                    

Información Básica de la Extensión

Nombre MagicSniper MagicSniper
ID jckogoaipjnjehbloaippbdlpepmoabl
URL Oficial https://chromewebstore.google.com/detail/magicsniper/jckogoaipjnjehbloaippbdlpepmoabl
Descripción Sniper and score indicator on Magic Eden.s
Tamaño del Archivo 185 KB
Cantidad de Instalaciones 52
Versión Actual 1.0.2
Última Actualización 2022-07-26
Fecha de Publicación 2022-05-18
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador https://magicsniper.org
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://magicsniper.org
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MagicSniper",
    "description": "Sniper and score indicator on Magic Eden.s",
    "version": "1.0.2",
    "manifest_version": 3,
    "homepage_url": "https:\/\/magicsniper.org",
    "icons": {
        "24": "icons\/24.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png",
        "256": "icons\/256.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/magiceden.io\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "host_permissions": [
        "*:\/\/*.magiceden.io\/*"
    ],
    "permissions": [
        "storage",
        "activeTab"
    ]
}