The mint.fun chrome extension allows you to mint any NFT directly on mint.fun to earn the most points during !fundrop.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "!fundrop",
"description": "The mint.fun chrome extension allows you to mint any NFT directly on mint.fun to earn the most points during !fundrop.",
"externally_connectable": {
"matches": [
"http://localhost/*",
"https://*.mf.dev/*",
"https://mint.fun/*"
]
},
"version": "0.1.1",
"permissions": [
"storage"
],
"background": {
"service_worker": "src/pages/background/index.js",
"type": "module"
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"content_scripts": [
{
"matches": [
"https://zora.co/*",
"https://app.manifold.xyz/*",
"https://pro.opensea.io/*",
"https://opensea.io/*"
],
"js": [
"src/pages/content/index.js"
],
"css": [
"assets/styles-10a512ef.css"
]
}
]
}