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": "Google Calendar - Show Accepted Only",
"version": "1.0",
"description": "Hide declined events and show only accepted events in Google Calendar",
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/calendar.google.com\/*"
],
"action": {
"default_popup": "popup.html",
"default_icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
}
},
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/calendar.google.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
]
}