Highlighter Tool

Keeps a list of words and phrases to Highlight when active

Highlighter Tool क्या है?

Highlighter Tool n33san द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Keeps a list of words and phrases to Highlight when active"।

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

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

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

                        *Update: The extension now requires you to click the icon to highlight the terms in the current tab. This gives you the power to find what you need when you need it.

This extension saves a list of words or phrases to highlight on any webpage. Developed for reddit user /u/Gravitom

It's clunky and not very pretty, but it was developed in a bit of a rush to practice JS and get 1 user his desired Google Chrome extension.                    

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

नाम Highlighter Tool Highlighter Tool
ID agkdcdgphcoadkhbphpbnaohejifmbgg
आधिकारिक URL https://chrome.google.com/webstore/detail/highlighter-tool/agkdcdgphcoadkhbphpbnaohejifmbgg
विवरण Keeps a list of words and phrases to Highlight when active
फ़ाइल का आकार 39.48 KB
स्थापना संख्या 223
वर्तमान संस्करण 0.2.1
अंतिम अपडेट 2017-05-16
प्रकाशन तिथि 2017-05-16
रेटिंग 3.33/5 कुल 3 रेटिंग्स
डेवलपर n33san
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Highlighter Tool",
    "version": "0.2.1",
    "description": "Keeps a list of words and phrases to Highlight when active",
    "permissions": [
        "tabs",
        "",
        "storage"
    ],
    "browser_action": {
        "default_icon": "pencil32.png",
        "default_title": "Click to highlight"
    },
    "options_ui": {
        "page": "popup.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.2.1.min.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "brAction.js",
            "myscript.js"
        ]
    },
    "icons": {
        "32": "pencil32.png",
        "128": "pencil128.png"
    },
    "manifest_version": 2
}