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 to Resume, by CVGist",
"description": "One-click to turn your LinkedIn profile into an amazing resume. Fast, easy, and free.",
"version": "0.1.6",
"icons": {
"16": "icon\/16.png",
"24": "icon\/24.png",
"48": "icon\/48.png",
"96": "icon\/96.png",
"128": "icon\/128.png"
},
"homepage_url": "https:\/\/cvgist.com",
"permissions": [
"downloads",
"storage",
"tabs"
],
"host_permissions": [
"*:\/\/*.linkedin.com\/*",
"https:\/\/cvgist.com\/resume-from-profile\/generating"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Default Popup Title",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/cvgist.com\/resume-from-profile\/generating"
],
"js": [
"content-scripts\/cvgist.js"
]
},
{
"matches": [
"*:\/\/*.linkedin.com\/*"
],
"js": [
"content-scripts\/linkedin.js"
]
}
]
}