Inspect and view changes in Guarit Extension 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": 3,
"name": "Guarit Extension",
"version": "1.0.2",
"description": "Get real-time audit reports and detailed contract analysis directly in your browser.",
"permissions": [
"activeTab",
"declarativeContent",
"tabs"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_popup_width": 400
},
"icons": {
"128": "icons/guarit.png"
},
"content_scripts": [
{
"matches": [
"https://dexscreener.com/ethereum/*",
"https://www.dextools.io/app/en/ether/pair-explorer/*",
"https://www.geckoterminal.com/eth/pools/*",
"https://etherscan.io/token/*"
],
"js": [
"content.js"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}