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": "LinkedIn Comment Bot", "version": "1.0.0", "description": "Automate LinkedIn comments with a convenient sidebar", "permissions": [ "sidePanel", "scripting", "storage", "tabs", "activeTab" ], "host_permissions": [ "https:\/\/*.linkedin.com\/*" ], "side_panel": { "default_path": "sidebar.html" }, "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/*.linkedin.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "icons": { "16": "icons\/logo.png", "48": "icons\/logo.png", "128": "icons\/logo.png" }, "action": { "default_title": "LinkedIn Comment Bot" } }