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 Apr 20, 2025.
Hand-picked for quality and usefulness
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Fast editable answers for LinkedIn messages", "version": "0.1.1", "manifest_version": 3, "name": "LinkedIn Quick Replies", "background": { "service_worker": "background.bundle.js" }, "action": { "default_popup": "popup.html", "default_title": "LinkedIn Quick Replies - Learn more", "default_icon": { "16": "logo16.png", "32": "logo32.png", "48": "logo48.png", "128": "logo128.png" } }, "icons": { "16": "logo16.png", "32": "logo32.png", "48": "logo48.png", "128": "logo128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.linkedin.com\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ] } ], "web_accessible_resources": [ { "resources": [ "content.styles.css", "icon128.png", "icon48.png", "icon32.png", "icon16.png" ], "matches": [] } ], "permissions": [ "storage", "tabs", "unlimitedStorage", "declarativeContent" ] }