Pearls Extension

Always highlight a set of words stored for chosen webpages.

Pearls Extensionคืออะไร?

Pearls Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tony.lopes และคุณลักษณะหลักของมันคือ "Always highlight a set of words stored for chosen webpages."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pearls Extension

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}