Responsive CV: Resume Maker from LinkedIn

Responsive CV: Resume Maker from LinkedIn

Convert your linkedin profile to beautiful resume with QR code & mobile resume in single click. Easy & Simple !!!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://responsivecv.com https://linkedin.com; object-src 'self'",
  "name": "Responsive CV: Resume Maker from LinkedIn",
  "description": "Convert your linkedin profile to beautiful resume with QR code & mobile resume in single click. Easy & Simple !!!",
  "version": "5.7",
  "browser_action": {
    "default_icon": "icon128.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.linkedin.com/*",
        "https://*.responsivecv.com/*"
      ],
      "js": [
        "jquery-1.11.1.min.js",
        "core.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "style.css"
  ],
  "permissions": []
}