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": "Universal Converter",
"version": "1.6.2",
"description": "Convert any unit or currency to another with text selection popup and comprehensive unit support",
"permissions": [
"activeTab",
"storage",
"contextMenus"
],
"host_permissions": [
"https:\/\/api.exchangerate.fun\/latest*",
"https:\/\/cdn.jsdelivr.net\/npm\/@fawazahmed0\/currency-api@latest\/v1\/currencies\/*"
],
"action": {
"default_title": "Universal Converter: Convert units and currencies"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"data\/conversion-data.js",
"data\/currency-mappings.js",
"utils\/unit-converter.js",
"utils\/currency-converter.js",
"utils\/conversion-detector.js",
"utils\/popup-manager.js",
"utils\/settings-manager.js",
"content.js"
],
"css": [
"content.css"
]
}
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
}