23 lines
527 B
JSON
23 lines
527 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Dexscreener Smart Contract Detector",
|
|
"version": "1.0",
|
|
"description": "Detect smart contracts in tweets, show ticker and price, and redirect to Dexscreener chart.",
|
|
"permissions": [
|
|
"activeTab",
|
|
"scripting",
|
|
"storage"
|
|
],
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["*://x.com/*", "*://twitter.com/*"],
|
|
"js": ["content.js"]
|
|
}
|
|
],
|
|
"host_permissions": [
|
|
"https://api.dexscreener.io/*"
|
|
]
|
|
} |