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?
OpenSea Sniper - a cart & rarity tool by X2Y2是由X2Y2開發的Chrome擴展程式,該擴展的主要功能是“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擴展crx文件
下載OpenSea Sniper - a cart & rarity tool by X2Y2擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | OpenSea Sniper - a cart & rarity tool by X2Y2 |
ID | lfccjjgigljjnolmcbnomabcihopiioo |
官方網址 | https://chromewebstore.google.com/detail/opensea-sniper-a-cart-rar/lfccjjgigljjnolmcbnomabcihopiioo |
簡介 | A shopping cart experience to buy NFTs in one transaction, saving up to 40% of your gas. |
檔案大小 | 492 KB |
安裝次數 | 2,185 |
目前版本 | 0.6 |
更新時間 | 2022-03-29 |
上架時間 | 2022-03-10 |
評分 | 5.00/5 共 40 次評分 |
開發者 | X2Y2 |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://x2y2.io |
說明頁面URL | https://x2y2.io |
隱私政策頁面URL | https://x2y2.io/page/terms |
支援的語言 | 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" ] } |