Inspect and view changes in PostureMinder 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "PostureMinder",
"version": "2.1.3",
"manifest_version": 3,
"author": "Sheryl Lun",
"description": "Reminds you to sit up straight with pop-up notifications at specified time intervals.",
"icons": {
"128": "img/spine.png"
},
"permissions": [
"alarms",
"notifications",
"offscreen",
"storage"
],
"background": {
"service_worker": "service_worker.js",
"type": "module"
},
"action": {
"default_title": "PostureMinder",
"default_icon": "img/spine.png",
"default_popup": "popout.html"
},
"web_accessible_resources": [
{
"resources": [
"./audio/notification.mp3"
],
"matches": [
"<all_urls>"
]
}
]
}