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
官方網址 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
電子郵箱 [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"
    ]
}