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 Shortcut Format",
"version": "2.0.1",
"description": "Format your LinkedIn posts and comments with bold and italic styles using keyboard shortcuts.",
"content_scripts": [
{
"matches": [
"https:\/\/www.linkedin.com\/*"
],
"js": [
"content.js"
]
}
],
"background": {
"service_worker": "background.js"
},
"commands": {
"format-bold": {
"suggested_key": {
"default": "Ctrl+B",
"mac": "Command+B"
},
"description": "Format text as bold"
},
"format-italic": {
"suggested_key": {
"default": "Ctrl+I",
"mac": "Command+I"
},
"description": "Format text as italic"
}
},
"icons": {
"48": "assets\/48.png",
"128": "assets\/128.png"
}
}