SuperSea

The supercharged OpenSea experience

SuperSea란 무엇입니까?

SuperSea은(는) http://nonfungible.tools에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The supercharged OpenSea experience"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        SuperSea is an extension for traders looking to gain a competitive advantage over other market participants. The browser extension supercharges your OpenSea experience by turning it into a fully fledged trading terminal, with real-time listing monitoring, mass-bidding, one-click quick buys, and rarity ranks available moments after a collection reveals.

==== Features ====

--- Floor Prices ---
Easily keep track of floor prices for all your tokens, and view a sum total for your entire collection.

--- Platform Shortcuts ---
Get quick access to links to view the same asset on other platforms and marketplaces, quickly find your way to the collection's contract on Etherscan, or view the raw JSON metadata for the item.

--- Skip OpenSea Cache ---
Fetch asset images directly from source to snipe something rare when everyone else waits for OpenSea to update their cache after a reveal. 

--- Mass-Refresh ---
Mass-queue items for OpenSea metadata refresh after a reveal, saving you from needing to go through your items one by one.

--- Real-time Activity --- 
Watch listings and sales in real-time, and get notified the precise moment an asset within your given price range is listed, or matching a specified rarity or combination of traits (members only). Members also get access to seeing all pending transactions for the tracked collections.

--- Floor Alerts [Members Only] ---
Set up alerts to get notified when a collection reaches above or goes below a target floor price.

--- Quick Buy [Members Only] ---
Buy items directly from grid and activity list views, circumventing all OpenSea confirmation steps in between. For the moments when a few seconds matter to get the snipe in.

--- Mass Bid [Members Only] ---
Mass place bids on all items in a collection matching your specific filters. Just sign the transactions that pop up automatically, instead of needing to click into each item one by one.

--- Rarity Ranks [Members Only] ---
Members get access to our color-graded rarity ranks that display inline with every item. No need to have multiple tabs open and cross reference with other ranking websites.

We're committed to continually improving SuperSea and adding new features, both for members and free users. Join us on Discord for early sneak peeks of upcoming features!                    

확장 프로그램 기본 정보

이름 SuperSea SuperSea
ID fahpmemkhpdgoodnooghaokmjehjokmd
공식 URL https://chrome.google.com/webstore/detail/supersea/fahpmemkhpdgoodnooghaokmjehjokmd
설명 The supercharged OpenSea experience
파일 크기 5.5 MB
설치 횟수 13,083
현재 버전 1.14.8
최근 업데이트 2023-06-15
출시 날짜 2021-09-27
평점 4.83/5 총 6 개의 평점
개발자 http://nonfungible.tools
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://nonfungible.tools
도움말 페이지 URL https://docs.supersea.xyz
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SuperSea",
    "description": "The supercharged OpenSea experience",
    "version": "1.14.8",
    "minimum_chrome_version": "93",
    "manifest_version": 3,
    "action": {
        "icons": {
            "128": "icon.png"
        },
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.opensea.io\/*"
            ],
            "js": [
                "static\/js\/content\/opensea.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.sudoswap.xyz\/*"
            ],
            "js": [
                "static\/js\/content\/sudoswap.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.gem.xyz\/*"
            ],
            "js": [
                "static\/js\/content\/gem.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "static\/js\/background.js"
    },
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "host_permissions": [
        "https:\/\/*.opensea.io\/*",
        "https:\/\/*.sudoswap.xyz\/*",
        "https:\/\/*.gem.xyz\/*",
        "https:\/\/*.nonfungible.tools\/*"
    ],
    "icons": {
        "128": "icon.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "static\/js\/pageContextInject.js"
            ],
            "matches": [
                "https:\/\/*.opensea.io\/*"
            ]
        },
        {
            "resources": [
                "notification.mp3"
            ],
            "matches": [
                "https:\/\/*.opensea.io\/*"
            ]
        }
    ],
    "permissions": [
        "storage",
        "notifications",
        "declarativeNetRequest"
    ]
}