context-note

This extension is a note-taking tool that help users take notes on the web with their context. Most of the time we use bookmark to…

context-note란 무엇입니까?

context-note은(는) Jim Chan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension is a note-taking tool that help users take notes on the web with their context. Most of the time we use bookmark to…"입니다.

확장 프로그램 스크린샷

screenshot

context-note 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension is a note-taking tool that help users take notes on the web with their context. Most of the time we use bookmark to manage the websites link that are important. However, in some specific scenes such as reading an article or browsing some key information, we also need to mark down the specific sentence and its context. When reviewing these notes, we can simply jump back to that sentence rather than reading the whole page again, where this extension is to extract the text and location information of these notes.                    

확장 프로그램 기본 정보

이름 context-note context-note
ID enmeffcefbiehghanidhebgiccljmncl
공식 URL https://chromewebstore.google.com/detail/context-note/enmeffcefbiehghanidhebgiccljmncl
설명 This extension is a note-taking tool that help users take notes on the web with their context. Most of the time we use bookmark to…
파일 크기 533 KB
설치 횟수 1,177
현재 버전 1.3.10
최근 업데이트 2022-05-19
출시 날짜 2021-09-24
평점 4.75/5 총 4 개의 평점
개발자 Jim Chan
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/betterRunner/context-note
도움말 페이지 URL https://github.com/betterRunner/context-note/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "context-note",
    "version": "1.3.10",
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "16": "assets\/icon16.png",
            "48": "assets\/icon48.png",
            "128": "assets\/icon128.png"
        },
        "default_title": "Context Note"
    },
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-scripts\/main.js"
            ],
            "css": [
                "content-scripts\/main.css",
                "content-scripts\/main.44bddb14.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "assets\/*"
            ]
        },
        {
            "resources": [
                "\/assets\/element-icons.9c88a535.woff",
                "\/assets\/element-icons.de5eb258.ttf"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "unlimitedStorage",
        "activeTab",
        "storage"
    ]
}