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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    ]
}