Highlighter Tool

Keeps a list of words and phrases to Highlight when active

Highlighter Toolとは何ですか?

Highlighter Toolはn33sanによって開発されたChromeの拡張機能で、その主な機能は「Keeps a list of words and phrases to Highlight when active」です。

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

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

拡張機能の使用方法

                        *Update: The extension now requires you to click the icon to highlight the terms in the current tab. This gives you the power to find what you need when you need it.

This extension saves a list of words or phrases to highlight on any webpage. Developed for reddit user /u/Gravitom

It's clunky and not very pretty, but it was developed in a bit of a rush to practice JS and get 1 user his desired Google Chrome extension.                    

拡張機能の基本情報

名前 Highlighter Tool Highlighter Tool
ID agkdcdgphcoadkhbphpbnaohejifmbgg
公式URL https://chrome.google.com/webstore/detail/highlighter-tool/agkdcdgphcoadkhbphpbnaohejifmbgg
説明 Keeps a list of words and phrases to Highlight when active
ファイルサイズ 39.48 KB
インストール数 223
現在のバージョン 0.2.1
最終更新日 2017-05-16
公開日 2017-05-16
評価 3.33/5 合計 3 レビュー
開発者 n33san
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Highlighter Tool",
    "version": "0.2.1",
    "description": "Keeps a list of words and phrases to Highlight when active",
    "permissions": [
        "tabs",
        "",
        "storage"
    ],
    "browser_action": {
        "default_icon": "pencil32.png",
        "default_title": "Click to highlight"
    },
    "options_ui": {
        "page": "popup.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.2.1.min.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "brAction.js",
            "myscript.js"
        ]
    },
    "icons": {
        "32": "pencil32.png",
        "128": "pencil128.png"
    },
    "manifest_version": 2
}