MagicSniper

Sniper and score indicator on Magic Eden.s

MagicSniper란 무엇입니까?

MagicSniper은(는) https://magicsniper.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Sniper and score indicator on Magic Eden.s"입니다.

확장 프로그램 스크린샷

screenshot

MagicSniper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 MagicSniper MagicSniper
ID jckogoaipjnjehbloaippbdlpepmoabl
공식 URL https://chromewebstore.google.com/detail/magicsniper/jckogoaipjnjehbloaippbdlpepmoabl
설명 Sniper and score indicator on Magic Eden.s
파일 크기 185 KB
설치 횟수 52
현재 버전 1.0.2
최근 업데이트 2022-07-26
출시 날짜 2022-05-18
평점 5.00/5 총 3 개의 평점
개발자 https://magicsniper.org
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://magicsniper.org
지원되는 언어 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"
    ]
}