WebNote Highlighter

Are you someone who finds it difficult to remember things? Are you continuously trying to recall the keyword which you just read…

WebNote Highlighter란 무엇입니까?

WebNote Highlighter은(는) thesolodeveloper에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Are you someone who finds it difficult to remember things? Are you continuously trying to recall the keyword which you just read…"입니다.

확장 프로그램 스크린샷

screenshot

WebNote Highlighter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Are you someone who finds it difficult to remember things? Are you continuously trying to recall the keyword which you just read but you are unable to do so? Are you a student who is constantly struggling to learn something? If you said yes to any of these, then we are here with a wonderful solution. Introducing webnote highlighter, a simple chrome extension that acts as a one-time solution to all your problems.

Webnote highlighter
1. Allows you to select a specific text content from any website and save it for future reference.
2. Highlights the selected places on the website for better understanding.
3. Allows you to give a customised description while saving.
4. Stores all the selected texts forever in your browser.
5. Allows you to search a particular note and has an option that takes you to the webpage where the note was created and highlights it.
6. Highlights the selected content even upon revisiting the same page.
7. And finally with its most impressive feature export/import, it allows you to share the selected and saved content among your friends/colleagues.


Developer contact: [email protected]                    

확장 프로그램 기본 정보

이름 WebNote Highlighter WebNote Highlighter
ID ghghioakadpoakpmmjbmepcgomdfdpdb
공식 URL https://chromewebstore.google.com/detail/webnote-highlighter/ghghioakadpoakpmmjbmepcgomdfdpdb
설명 Are you someone who finds it difficult to remember things? Are you continuously trying to recall the keyword which you just read…
파일 크기 218 KB
설치 횟수 14
현재 버전 0.01
최근 업데이트 2021-06-29
출시 날짜 2021-06-28
평점 5.00/5 총 4 개의 평점
개발자 thesolodeveloper
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WebNote Highlighter",
    "version": "0.01",
    "icons": {
        "16": "app-icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "Notes",
        "default_popup": "index.html",
        "default_icon": "app-icon.png"
    },
    "permissions": [
        "tabs",
        "",
        "storage",
        "unlimitedStorage",
        "downloads"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content_css.css"
            ],
            "all_frames": false
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "pin-icon.png",
        "tooltip-background.svg",
        "app-icon.png"
    ]
}