Web Highlighter

This extension will help you store and highlight phrases or chunks of text, and add description if needed.

Web Highlighterとは何ですか?

Web Highlighterはjfernando0911によって開発されたChromeの拡張機能で、その主な機能は「This extension will help you store and highlight phrases or chunks of text, and add description if needed.」です。

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

screenshot
screenshot

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

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

拡張機能の使用方法

                        Web higlighter is an extension for chrome that helps you highlight words, phrases or chunks of text. You can add descriptions, translation or any kind of details to the highlights. Everytime you find a word on the web that you saved in your database it will be highlighted with their respective details, descriptions or details.

This extension was heavily inspired by lingq and learning with texts.                    

拡張機能の基本情報

名前 Web Highlighter Web Highlighter
ID laoclledadegilngghaiilbepfgpekil
公式URL https://chromewebstore.google.com/detail/web-highlighter/laoclledadegilngghaiilbepfgpekil
説明 This extension will help you store and highlight phrases or chunks of text, and add description if needed.
ファイルサイズ 261 KB
インストール数 3,629
現在のバージョン 0.3.3
最終更新日 2020-07-17
公開日 2020-06-01
評価 3.71/5 合計 7 レビュー
開発者 jfernando0911
Eメール [email protected]
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Web Highlighter",
    "description": "This extension will help you store and highlight phrases or chunks of text, and add description if needed.",
    "version": "0.3.3",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "css": [
                "highlightStyle.css"
            ],
            "js": [
                "mark.es6.min.js",
                "contentScript.js",
                "Functions.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Web Highlighter"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "tabs"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "Functions.js",
            "backgroundScript.js"
        ]
    }
}