Word Highlighter

This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web

Word Highlighterとは何ですか?

Word HighlighterはRafael Almeidaによって開発されたChromeの拡張機能で、その主な機能は「This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web」です。

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

screenshot
screenshot

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

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

拡張機能の使用方法

                        The source code for this extension is available at https://github.com/rafaelcpalmeida/Word-Highlighter                    

拡張機能の基本情報

名前 Word Highlighter Word Highlighter
ID ncjaameocjfjjnjcijikhkhifncjijhn
公式URL https://chromewebstore.google.com/detail/word-highlighter/ncjaameocjfjjnjcijikhkhifncjijhn
説明 This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web
ファイルサイズ 229 KB
インストール数 826
現在のバージョン 1.0.2
最終更新日 2016-11-27
公開日 2016-11-27
評価 2.75/5 合計 8 レビュー
開発者 Rafael Almeida
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Highlighter",
    "description": "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web",
    "version": "1.0.2",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "html\/popup.html"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/content.js"
            ]
        }
    ]
}