Inspect and view changes in Torn Trade Calculator 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": "Trade Value Calculator",
"version": "1.3",
"description": "Calculates the total value of items in a trade on Torn.com.",
"permissions": [
"activeTab",
"https://dd107b3e-5d58-46ac-a01c-c6396e6ae89c-00-jnemhkuhto6l.janeway.replit.dev/",
"https://weav3r.lol/"
],
"content_scripts": [
{
"matches": [
"*://www.torn.com/trade.php*"
],
"js": [
"content.js"
],
"css": [
"style.css"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"browser_specific_settings": {
"gecko": {
"id": "new-trade-calculator@example.com"
}
}
}