Arweave.app browser extension
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",
"name": "Arweave.app",
"action": {
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"manifest_version": 3,
"version": "0.2022.725.1327",
"description": "Arweave.app browser extension",
"icons": {
"128": "arweaveViewSmall.png"
},
"permissions": [
"activeTab"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_start",
"js": [
"content.js"
]
}
],
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"wrapper.js"
]
}
]
}