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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bubli4e4eg และคุณลักษณะหลักของมันคือ "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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Highbrighter

ดาวน์โหลดไฟล์ส่วนขยาย Highbrighter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
}