Highbrighter

Highbrighter to mark text, add notes and navigate them through context menu. All the changes to a page can be saved and then loaded

Highbrighter란 무엇입니까?

Highbrighter은(는) bubli4e4eg에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Highbrighter to mark text, add notes and navigate them through context menu. All the changes to a page can be saved and then loaded"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        The general functionality: 
* Mark text with several colours through a context menu on a page
* Save the marked text and load it later when accessing the same page
* Set up your preferences to change a default colour for marking and load a page automatically if it is available in the storage
* Categorise pages when saving or in the preferences
* Use keyboard shortcuts for frequently used commands in the context menu
* Add notes on a page and navigate them by quick scrolling through the context menu
* Import and export stored pages between different PCs and browsers (supporting Mozilla Firefox starting from 60.0) through the preferences page                    

확장 프로그램 기본 정보

이름 Highbrighter Highbrighter
ID gccbpihjfohfiipkoclimdkkeinadega
공식 URL https://chromewebstore.google.com/detail/highbrighter/gccbpihjfohfiipkoclimdkkeinadega
설명 Highbrighter to mark text, add notes and navigate them through context menu. All the changes to a page can be saved and then loaded
파일 크기 107 KB
설치 횟수 30
현재 버전 1.2.1
최근 업데이트 2020-06-06
출시 날짜 2020-06-06
개발자 bubli4e4eg
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Jahn08/WEB-PAGE-HIGHLIGHTER
지원되는 언어 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Jahn08",
    "background": {
        "page": "views\/background-loader.html"
    },
    "browser_action": {
        "default_title": "Highbrighter",
        "default_popup": "views\/popup.html",
        "default_icon": "icons\/highlighter48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_scripts\/lzwCompressor.js",
                "content_scripts\/browserAPI.js",
                "content_scripts\/arrayExtension.js",
                "content_scripts\/browserStorage.js",
                "content_scripts\/pageInfo.js",
                "content_scripts\/menuMessageEvent.js",
                "content_scripts\/messageReceiver.js",
                "content_scripts\/rangeBase.js",
                "content_scripts\/rangeMarker.js",
                "content_scripts\/rangeNote.js",
                "content_scripts\/messageControl.js",
                "content_scripts\/shortcut.js",
                "content_scripts\/index.js"
            ],
            "css": [
                "content\/index.css"
            ]
        }
    ],
    "default_locale": "en",
    "description": "__MSG_description__",
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/highbrighter\/gccbpihjfohfiipkoclimdkkeinadega",
    "icons": {
        "48": "icons\/highlighter48.png",
        "96": "icons\/highlighter96.png"
    },
    "manifest_version": 2,
    "name": "Highbrighter",
    "omnibox": {
        "keyword": "highbrighter"
    },
    "options_ui": {
        "page": "views\/preferences.html",
        "open_in_tab": false
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage",
        "unlimitedStorage"
    ],
    "version": "1.2.1"
}