Pearls Extension

Always highlight a set of words stored for chosen webpages.

Pearls Extension क्या है?

Pearls Extension tony.lopes द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Always highlight a set of words stored for chosen webpages."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Pearls Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}