Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Trading Lots Calculator",
"version": "2.0.18",
"description": "Calculates lot sizes in TradingView. Requires a license key (obtained via subscription) for full symbol access. Free for EURUSD.",
"homepage_url": "https:\/\/www.trade-lot.com",
"permissions": [
"storage",
"alarms"
],
"host_permissions": [
"https:\/\/*.tradingview.com\/*",
"https:\/\/4242-iygu58t4waxiquisbpczw-6f1212ed.manus.computer\/*"
],
"options_page": "options.html",
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Trade Lot Tool Options",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/*.tradingview.com\/*"
],
"js": [
"content.js"
],
"css": [
"style.css"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"style.css"
],
"matches": [
"https:\/\/*.tradingview.com\/*"
]
}
]
}