Note Box

A chrome extension to add notes/todos based on URL

Note Box란 무엇입니까?

Note Box은(는) Mehul Lakhanpal에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome extension to add notes/todos based on URL"입니다.

확장 프로그램 스크린샷

screenshot

Note Box 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Add notes/todos in domain/URL environment. Revisit the same note list when back to that URL or access all the notes from the Homepage. No Login/Signup. All the notes are stored in the browser memory.                    

확장 프로그램 기본 정보

이름 Note Box Note Box
ID mbbajjgefpenmkkhcnmmnoodlbcbfnmp
공식 URL https://chromewebstore.google.com/detail/note-box/mbbajjgefpenmkkhcnmmnoodlbcbfnmp
설명 A chrome extension to add notes/todos based on URL
파일 크기 1.57 MB
설치 횟수 125
현재 버전 2.0
최근 업데이트 2021-03-28
출시 날짜 2021-02-07
평점 5.00/5 총 1 개의 평점
개발자 Mehul Lakhanpal
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.codedrops.tech/products/note-box
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Note Box",
    "version": "2.0",
    "manifest_version": 3,
    "description": "A chrome extension to add notes\/todos based on URL",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        },
        "default_title": "Note Box",
        "default_popup": "build\/popup\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "homepage_url": "https:\/\/www.codedrops.tech\/products\/note-box"
}