Inspect and view changes in Tid 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": "Tid",
"version": "0.2.0",
"author": "Linus Törngren, Etnolit",
"description": "A simple extension for creating timers in browser tabs.",
"homepage_url": "https://etnolit.se/tid",
"browser_specific_settings": {
"gecko": {
"strict_min_version": "55.0"
}
},
"icons": {
"48": "assets/icons/alarm-48.png",
"96": "assets/icons/alarm-96.png"
},
"background": {
"scripts": [
"js/background.js"
]
},
"browser_action": {
"default_icon": {
"16": "assets/icons/alarm-16.png",
"32": "assets/icons/alarm-32.png"
}
},
"permissions": [
"notifications",
"storage"
],
"omnibox": {
"keyword": "tid"
}
}