Highlighter

Highlights a user-defined list of keywords on all web pages.

Highlighter क्या है?

Highlighter gingerbeardman द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Highlights a user-defined list of keywords on all web pages."।

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

crx प्रारूप में Highlighter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Highlight a user defined list of keywords on webpages you visit. Supports groups of words that will highlight in the same colour, and lots more!

- keywords support plain text and regular expressions!
- easy keyword entry
- with paste support
- drag and drop reordering
- automatic colouring
- instant update on the page
- page action
- options page
- highlight toggle
- works with dynamic content
- context menu
- fast!

Open source:                    

एक्सटेंशन की मूल जानकारी

नाम Highlighter Highlighter
ID oibnefncafkleabfjlfheddocehlinga
आधिकारिक URL https://chrome.google.com/webstore/detail/highlighter/oibnefncafkleabfjlfheddocehlinga
विवरण Highlights a user-defined list of keywords on all web pages.
फ़ाइल का आकार 129 KB
स्थापना संख्या 519
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2014-01-21
प्रकाशन तिथि 2014-01-21
रेटिंग 3.11/5 कुल 9 रेटिंग्स
डेवलपर gingerbeardman
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Highlighter",
    "description": "Highlights a user-defined list of keywords on all web pages.",
    "version": "1.0.0",
    "permissions": [
        "storage",
        "tabs",
        "contextMenus"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "16": "img\/icon16.png",
            "19": "img\/icon19.png",
            "38": "img\/icon38.png",
            "48": "img\/icon48.png",
            "128": "img\/icon128.png"
        },
        "default_title": "Highlighter",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "css": [
                "css\/highlight.css"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/jquery.highlightregex.min.js",
                "js\/highlight.regex.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "icons": {
        "16": "img\/icon16.png",
        "19": "img\/icon19.png",
        "38": "img\/icon38.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "manifest_version": 2
}