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": "Creative Writing Coach",
"version": "6.0",
"description": "Real-time writing feedback for Google Docs.",
"permissions": [
"identity",
"storage",
"activeTab",
"sidePanel"
],
"host_permissions": [
"https:\/\/docs.google.com\/*"
],
"oauth2": {
"client_id": "983672206267-e77ioknrq4185h2b8skj1ijgd4l0r28q.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/documents.readonly"
]
},
"background": {
"service_worker": "background.js"
},
"side_panel": {
"default_path": "sidepanel\/index.html"
},
"action": {
"default_icon": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/docs.google.com\/*"
],
"js": [
"content.js"
]
}
]
}