Inspect and view changes in Gold Price Converter 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": "Gold Price Converter",
"version": "1.0",
"description": "Convert XAUUSD price to CNY in real-time",
"permissions": [
"activeTab"
],
"host_permissions": [
"https://cn.tradingview.com/*",
"https://cn.investing.com/*",
"https://api.exchangerate-api.com/*"
],
"content_scripts": [
{
"matches": [
"https://cn.tradingview.com/symbols/XAUUSD/*",
"https://cn.investing.com/currencies/*"
],
"js": [
"content.js"
],
"css": [
"styles.css"
]
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Gold Price Converter",
"default_popup": "gold-price-live-calculator.html",
"default_icon": {
"16": "images/logo.png"
}
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}