Inspect and view changes in Timezone Finder 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": 2,
"name": "Timezone Finder",
"version": "1.0.1",
"description": "This is a simple extension that displays your current time zone",
"author": "Aman Thukral",
"icons": {
"128": "icons8-clock-128.png"
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": "icons8-clock-128.png",
"default_title": "Timezone finder"
},
"permissions": [
"activeTab"
],
"background": {
"scripts": [
"main.js"
]
}
}