Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Duration for Google Tasks",
"version": "1.5.5",
"description": "Smarter Tasks in Google Calendar",
"background": {
"service_worker": "src\/pages\/background\/index.js",
"type": "module"
},
"permissions": [
"storage",
"contextMenus",
"scripting",
"identity"
],
"host_permissions": [
"https:\/\/calendar.google.com\/*",
"https:\/\/tasks.googleapis.com\/*",
"<all_urls>"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"oauth2": {
"client_id": "561775733580-nj6qql91ili6b05ogbvp6bjo9ghs50s7.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/tasks"
]
},
"action": {
"default_popup": "src\/pages\/popup\/index.html",
"default_icon": "icon.png"
},
"icons": {
"128": "icon.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/calendar.google.com\/calendar\/*"
],
"js": [
"src\/pages\/content\/index.js"
],
"css": [
"assets\/css\/contentStyle17690035404.chunk.css"
]
},
{
"matches": [
"https:\/\/tasks.google.com\/*"
],
"js": [
"src\/pages\/content\/index.js"
],
"run_at": "document_end"
},
{
"matches": [
"<all_urls>"
],
"js": [
"src\/pages\/contextMenu\/index.js"
],
"css": [
"assets\/css\/contentStyle17690035404.chunk.css"
]
},
{
"matches": [
"https:\/\/extensionpay.com\/*"
],
"js": [
"src\/pages\/extPay\/index.js"
],
"run_at": "document_start",
"css": []
}
],
"web_accessible_resources": [
{
"resources": [
"assets\/js\/*.js",
"assets\/css\/*.css",
"icon.png",
"src\/pages\/update\/index.html"
],
"matches": [
"*:\/\/*\/*"
]
}
]
}