Easy Note Taking for LinkedIn

This extension allows you to take notes on LinkedIn profiles. These notes are there only for you.

Easy Note Taking for LinkedIn란 무엇입니까?

Easy Note Taking for LinkedIn은(는) https://igodev.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows you to take notes on LinkedIn profiles. These notes are there only for you."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Easy Note Taking for LinkedIn 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension allows you to take notes on LinkedIn profiles. These notes are there only for you. 
You can also access these notes when you are messaging to someone on LinkedIn. 
All notes are securely stored in Google Chrome Sync Storage. 
This Extension does not transmit data to any 3rd party. 🔒                    

확장 프로그램 기본 정보

이름 Easy Note Taking for LinkedIn Easy Note Taking for LinkedIn
ID acmbfggokaabfndehodmoekhccfnphel
공식 URL https://chromewebstore.google.com/detail/easy-note-taking-for-link/acmbfggokaabfndehodmoekhccfnphel
설명 This extension allows you to take notes on LinkedIn profiles. These notes are there only for you.
파일 크기 1.51 MB
설치 횟수 196
현재 버전 0.0.3
최근 업데이트 2021-10-25
출시 날짜 2021-01-18
평점 4.71/5 총 7 개의 평점
개발자 https://igodev.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://igodev.com/private-notes-for-linkedin/
도움말 페이지 URL https://igodev.com/private-notes-for-linkedin/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Easy Note Taking for LinkedIn",
    "version": "0.0.3",
    "description": "This extension allows you to take notes on LinkedIn profiles. These notes are there only for you.",
    "permissions": [
        "*:\/\/*.linkedin.com\/*",
        "*:\/\/linkedin.com\/*",
        "storage"
    ],
    "manifest_version": 2,
    "web_accessible_resources": [
        "dist\/*.js",
        "dist\/*.map.js"
    ],
    "background": {
        "scripts": [
            "dist\/bundle-background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.linkedin.com\/*",
                "*:\/\/linkedin.com\/*"
            ],
            "js": [
                "dist\/bundle-notes.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    }
}