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": "My Currency Converter",
"short_name": "MyCC",
"description": "Just select the currency you want to convert",
"version": "1.0.4",
"homepage_url": "https:\/\/github.com\/uretgec\/my-currency-converter",
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/www.tcmb.gov.tr\/kurlar\/today.xml"
],
"icons": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"128": "icons\/128.png"
},
"author": "Uretgec",
"offline_enabled": false,
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [
"myStyles.css"
],
"run_at": "document_idle"
},
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"lib\/ccmanager.js",
"contentScript.js"
],
"run_at": "document_start"
}
],
"background": {
"service_worker": "background.js"
},
"externally_connectable": {
"matches": [
"https:\/\/www.tcmb.gov.tr\/kurlar\/today.xml"
]
}
}