Pearls Extension

Always highlight a set of words stored for chosen webpages.

Pearls Extensionとは何ですか?

Pearls Extensionはtony.lopesによって開発されたChromeの拡張機能で、その主な機能は「Always highlight a set of words stored for chosen webpages.」です。

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

screenshot

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

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

拡張機能の使用方法

                        There are many web pages that contains big lists of information constantly updated. As someone would repeatedly search for multiple interesting words that also could be a large set, it would be interesting to save those words and automatically search for them as the web page is updated. Back when IRC was used as an keep-updated-tool, this feature was called THE NoTifY LiST. Here I'm calling it Pearls, for some reason (I'll find out which someday).

You should reload your pages after installing the extension. (Nothing better than a restart here and there...).

Last Update:
- Now searching by words in double quotes will find them with case sensitive. i.e. "Go" will not match in "go there" but in "the Go language".
- Bug fixes: frames. Not all, but the most important will work. Certain words like C++ will not break the highlighting.                    

拡張機能の基本情報

名前 Pearls Extension Pearls Extension
ID mccffpojdcohdkefnbfhfdcklpcagdlc
公式URL https://chromewebstore.google.com/detail/pearls-extension/mccffpojdcohdkefnbfhfdcklpcagdlc
説明 Always highlight a set of words stored for chosen webpages.
ファイルサイズ 31.18 KB
インストール数 20,000
現在のバージョン 1.0.9
最終更新日 2023-08-26
公開日 2013-06-26
評価 4.23/5 合計 82 レビュー
開発者 tony.lopes
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト http://code.google.com/p/pearls-chrome/
ヘルプページのURL http://www.tonylopes.net
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pearls Extension",
    "version": "1.0.9",
    "manifest_version": 2,
    "description": "Always highlight a set of words stored for chosen webpages.",
    "icons": {
        "16": "pearl16.png",
        "48": "pearl48.png",
        "128": "pearl128.png"
    },
    "browser_action": {
        "default_icon": "pearl.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "pearlstorage.js",
            "pearlupdate.js",
            "pearlload.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*"
            ],
            "js": [
                "pearlscript.js"
            ],
            "css": [
                "pearlsstyle.css"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ]
}