Inspect and view changes in Motivation Tool with Quotes & Age Counter 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",
"manifest_version": 3,
"name": "Motivation Tool with Quotes & Age Counter",
"version": "1.2.2.1",
"description": "Displays daily motivational quotes with an age meter.",
"permissions": [
"storage",
"alarms",
"windows"
],
"background": {
"service_worker": "static/js/background.js"
},
"action": {
"default_popup": "index.html",
"default_title": "Open the popup"
},
"icons": {
"16": "logo192.png",
"48": "logo192.png",
"128": "logo192.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"web_accessible_resources": [
{
"resources": [
"popup.html",
"static/js/*.js",
"static/css/*.css"
],
"matches": [
"<all_urls>"
]
}
]
}