Inspect and view changes in Token check source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Token check",
"version": "1.0",
"description": "An extension to fetch and display token information.",
"permissions": [
"activeTab",
"webRequest",
"storage",
"webRequestBlocking",
"*://*.dexscreener.com/*",
"*://*.dextools.io/*",
"*://*.tokenspy.org/*",
"*://public-api.birdeye.so/*"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*://*.dexscreener.com/*",
"*://*.dextools.io/*"
],
"js": [
"content.js"
]
}
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{9d63e7b8-faa1-4826-af50-885e3d670269}"
}
}
}