Data is synced from the Chrome Web Store. View the official store page for the most current information.
This extension is no longer available on the Chrome Web Store. We noticed it was gone on Oct 29, 2025.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "LinkedIn AI Commenter",
"version": "1.0",
"description": "Adds an AI comment button to LinkedIn posts to generate comments using OpenAI.",
"permissions": [
"storage"
],
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"host_permissions": [
"https:\/\/www.linkedin.com\/feed\/*",
"https:\/\/generativelanguage.googleapis.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.linkedin.com\/feed\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "background.js"
},
"options_page": "options.html",
"action": {
"default_popup": "popup.html"
}
}