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": "ComposeNova - One Click Linkedin Comments & Posts",
"version": "1.1.0",
"description": "AI-powered assistant for composing comments and posts (works on LinkedIn)",
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"https:\/\/www.linkedin.com\/*",
"https:\/\/tools.originality.ai\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.linkedin.com\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_end"
}
],
"action": {
"default_popup": "popup.html",
"default_title": "ComposeNova",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"content.css"
],
"matches": [
"https:\/\/www.linkedin.com\/*"
]
}
]
}