Seize The Day Action Planner!
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": "Seize The Day Action Planner",
"version": "1.0",
"description": "Seize The Day Action Planner!",
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/icons16.png",
"32": "images/icons32.png",
"48": "images/icons48.png",
"128": "images/icons128.png"
}
},
"permissions": [
"storage",
"activeTab",
"contextMenus"
],
"background": {
"scripts": [
"packages/uuidv4.min.js",
"js/action-items-utils.js",
"js/background.js"
],
"persistent": false
},
"icons": {
"16": "images/icons16.png",
"32": "images/icons32.png",
"48": "images/icons48.png",
"128": "images/icons128.png"
},
"manifest_version": 2
}