Highlighter + Notes

Highlighter and Notes for Webpages

Highlighter + Notesとは何ですか?

Highlighter + NotesはPrateek Chawlaによって開発されたChromeの拡張機能で、その主な機能は「Highlighter and Notes for Webpages」です。

拡張機能のスクリーンショット

screenshot
screenshot

Highlighter + Notes拡張機能のCRXファイルをダウンロード

Highlighter + Notes拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Highlight important text and take notes effortlessly.

This extension enables you to highlight text on any web page. Choose from five different colors to highlight text, and the next time you visit the page your highlights will be waiting for you. 
Also, you can take short notes that are retained on your next visit.

Simply open up the Popup or use keyboard hotkeys to get started.
Keyboard Hotkeys: 
Press Ctrl + Shift + H to toggle highlighter. 
Press Ctrl + Shift + E to toggle eraser.

** Highlighter may not work on some websites due to their structure **                    

拡張機能の基本情報

名前 Highlighter + Notes Highlighter + Notes
ID kllkegeooedapeomenkneoilkodcleaa
公式URL https://chromewebstore.google.com/detail/highlighter-+-notes/kllkegeooedapeomenkneoilkodcleaa
説明 Highlighter and Notes for Webpages
ファイルサイズ 766 KB
インストール数 3,139
現在のバージョン 1.0.0
最終更新日 2020-05-31
公開日 2020-05-30
評価 3.75/5 合計 20 レビュー
開発者 Prateek Chawla
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Highlighter + Notes",
    "version": "1.0.0",
    "description": "Highlighter and Notes for Webpages",
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "64": "images\/icon_64.png",
        "128": "images\/icon_128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon_128.png",
        "default_popup": "popup\/highlighter-popup.html",
        "default_title": "Highlighter + Notes"
    },
    "author": "Prateek Chawla",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-scripts\/highlighter-util.js",
                "content-scripts\/highlighter.js",
                "content-scripts\/dispatch-highlighter.js",
                "content-scripts\/render-highlights.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "commands": {
        "add-highlight": {
            "suggested_key": {
                "default": "Ctrl+Shift+H",
                "mac": "Command+Shift+H"
            },
            "description": "Add Highlight"
        },
        "remove-highlight": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "Remove Highlight"
        }
    }
}