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": "Smart TimeZone Converter",
"version": "5.3.15",
"description": "Smart timezone converter with keyboard shortcut (Alt+Shift+T). Convert selected text between 100+ timezones.",
"permissions": [
"storage",
"activeTab",
"notifications",
"alarms",
"clipboardRead"
],
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content\/detector.js",
"content\/converter.js",
"content\/main.js"
],
"css": [
"ui\/tooltip.css"
],
"run_at": "document_idle",
"all_frames": true
}
],
"background": {
"service_worker": "background\/service-worker.js"
},
"action": {
"default_popup": "ui\/popup.html",
"default_icon": {
"16": "assets\/icon16.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
}
},
"icons": {
"16": "assets\/icon16.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}