OpenSea Sniper - a cart & rarity tool by X2Y2

A shopping cart experience to buy NFTs in one transaction, saving up to 40% of your gas.

OpenSea Sniper - a cart & rarity tool by X2Y2 là gì?

OpenSea Sniper - a cart & rarity tool by X2Y2 là một tiện ích mở rộng Chrome được phát triển bởi X2Y2, và tính năng chính của nó là "A shopping cart experience to buy NFTs in one transaction, saving up to 40% of your gas.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng OpenSea Sniper - a cart & rarity tool by X2Y2

Tải xuống các tệp mở rộng OpenSea Sniper - a cart & rarity tool by X2Y2 dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension will add "Add to cart" buttons to all NFTs listing on OpenSea. You can just add what you want to buy to the cart and make the checkout to buy them in a single transaction. 

And with this approach, you can save up to 40% of your gas compared to buy each item in a different transactions.

This extension is provided by X2Y2.io, the NFT marketplace. You can buy items from X2Y2 and OpenSea together in one transaction too.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên OpenSea Sniper - a cart & rarity tool by X2Y2 OpenSea Sniper - a cart & rarity tool by X2Y2
ID lfccjjgigljjnolmcbnomabcihopiioo
URL Chính Thức https://chromewebstore.google.com/detail/opensea-sniper-a-cart-rar/lfccjjgigljjnolmcbnomabcihopiioo
Mô tả A shopping cart experience to buy NFTs in one transaction, saving up to 40% of your gas.
Kích Thước Tệp 492 KB
Số Lần Cài Đặt 2,185
Phiên Bản Hiện Tại 0.6
Cập Nhật Lần Cuối 2022-03-29
Ngày Phát Hành 2022-03-10
Đánh Giá 5.00/5 Tổng số 40 Đánh Giá
Nhà Phát Triển X2Y2
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://x2y2.io
URL Trang Trợ Giúp https://x2y2.io
URL Trang Chính Sách Bảo Mật https://x2y2.io/page/terms
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "OpenSea Sniper - a cart & rarity tool by X2Y2",
    "description": "A shopping cart experience to buy NFTs in one transaction, saving up to 40% of your gas.",
    "version": "0.6",
    "externally_connectable": {
        "matches": [
            "*:\/\/*.x2y2.io\/*",
            "*:\/\/x2y2.io\/*",
            "http:\/\/localhost:3000\/*"
        ]
    },
    "action": {
        "default_icon": {
            "16": "\/images\/icon-16.png",
            "32": "\/images\/icon-32.png",
            "48": "\/images\/icon-48.png",
            "128": "\/images\/icon-128.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.opensea.io\/*",
                "*:\/\/opensea.io\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "js\/main.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.x2y2.io\/*",
                "*:\/\/x2y2.io\/*",
                "http:\/\/localhost:3000\/*"
            ],
            "run_at": "document_start",
            "js": [
                "js\/x2y2.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/x2y2_script.js"
            ],
            "matches": [
                "*:\/\/*.x2y2.io\/*",
                "*:\/\/x2y2.io\/*",
                "http:\/\/localhost:3000\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "background",
        "storage",
        "webNavigation",
        "tabs"
    ]
}