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 Post Formatter",
"description": "Add styling (bold, italic, script, etc.) to your LinkedIn posts with a simple toolbar and keyboard shortcuts.",
"version": "1.2.1",
"action": {
"default_popup": "index.html",
"default_icon": {
"16": "icons\/icon_16x16.png",
"32": "icons\/icon_32x32.png",
"48": "icons\/icon_48x48.png",
"128": "icons\/icon_128x128.png"
}
},
"icons": {
"16": "icons\/icon_16x16.png",
"32": "icons\/icon_32x32.png",
"48": "icons\/icon_48x48.png",
"128": "icons\/icon_128x128.png",
"256": "icons\/icon_256x256.png",
"512": "icons\/icon_512x512.png"
},
"permissions": [],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.linkedin.com\/*"
],
"js": [
"unicoder.js",
"content.js"
],
"run_at": "document_idle"
}
],
"host_permissions": [
"https:\/\/www.linkedin.com\/*"
]
}