Linked CV - Website Generator

Transform your LinkedIn profile into a beautiful, responsive personal website.

Linked CV - Website Generator란 무엇입니까?

Linked CV - Website Generator은(는) http://linkedcv.site에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Transform your LinkedIn profile into a beautiful, responsive personal website. "입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Linked CV - Website Generator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Transform your LinkedIn profile into an online CV on a beautiful, responsive personal website. This extension helps you save time by automatically transferring your existing data from LinkedIn to a CV-like website, which you can customize using different themes and custom domains.                    

확장 프로그램 기본 정보

이름 Linked CV - Website Generator Linked CV - Website Generator
ID bicjcdinlbclfpmlnaamnkidpfgikjak
공식 URL https://chrome.google.com/webstore/detail/linked-cv-website-generat/bicjcdinlbclfpmlnaamnkidpfgikjak
설명 Transform your LinkedIn profile into a beautiful, responsive personal website.
파일 크기 41.07 KB
설치 횟수 21
현재 버전 1.0
최근 업데이트 2020-09-14
출시 날짜 2020-09-13
평점 1.00/5 총 1 개의 평점
개발자 http://linkedcv.site
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.linkedcv.site/
도움말 페이지 URL https://www.linkedcv.site/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Linked CV",
    "name": "Linked CV - Website Generator",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Transform your LinkedIn profile into a beautiful, responsive personal website. ",
    "icons": {
        "128": "logo128.png"
    },
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "config.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.linkedin.com\/*",
                "https:\/\/*.linkedcv.site\/*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "jquery-3.5.1.min.js",
                "config.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}