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": "Reminder",
"version": "2.5.1",
"description": "Remind you to drink water, stand up and take breaks while working",
"default_locale": "en",
"permissions": [
"alarms",
"storage",
"tabs",
"scripting",
"identity",
"sidePanel",
"contextMenus",
"offscreen"
],
"host_permissions": [
"<all_urls>"
],
"oauth2": {
"client_id": "1006385381666-1mhpf42etvh7onfqjkfdirioir450chh.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/calendar.readonly",
"https:\/\/www.googleapis.com\/auth\/calendar.calendarlist.readonly"
]
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"side_panel": {
"default_path": "sidepanel.html"
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js",
"lockscreen.js"
],
"css": [
"content.css",
"lockscreen.css"
],
"run_at": "document_idle",
"all_frames": false
},
{
"matches": [
"<all_urls>"
],
"js": [
"trackerblocker-content.js"
],
"run_at": "document_idle",
"all_frames": false
},
{
"matches": [
"<all_urls>"
],
"js": [
"privacyblur-content.js"
],
"run_at": "document_idle",
"all_frames": false
}
],
"web_accessible_resources": [
{
"resources": [
"icons\/google-calendar.svg",
"icons\/icon48.png",
"sounds\/notification.wav",
"sounds\/message.wav"
],
"matches": [
"<all_urls>"
]
}
]
}