Supper easy to use currency converter 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": "__MSG_manifest_name__",
"version": "1.6.1",
"manifest_version": 3,
"homepage_url": "https://smart-converter.vercel.app/",
"author": "Currency Exchange Rates",
"description": "__MSG_manifest_description__",
"default_locale": "en",
"icons": {
"128": "./dist/assets/icons/icon128.png"
},
"action": {
"default_popup": "./dist/popup.html",
"default_title": "Open the popup",
"default_icon": "./dist/assets/icons/icon.png"
},
"background": {
"service_worker": "dist/bgWrapper.js"
},
"options_page": "dist/options.html",
"web_accessible_resources": [
{
"resources": [
"dist/options.html"
],
"matches": [],
"extension_ids": []
}
],
"permissions": [
"storage",
"identity",
"identity.email"
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+W",
"mac": "Alt+W"
}
}
}
}