Web Highlighter

This extension will help you store and highlight phrases or chunks of text, and add description if needed.

Web Highlighter क्या है?

Web Highlighter jfernando0911 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will help you store and highlight phrases or chunks of text, and add description if needed."।

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

screenshot
screenshot

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

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

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

                        Web higlighter is an extension for chrome that helps you highlight words, phrases or chunks of text. You can add descriptions, translation or any kind of details to the highlights. Everytime you find a word on the web that you saved in your database it will be highlighted with their respective details, descriptions or details.

This extension was heavily inspired by lingq and learning with texts.                    

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

नाम Web Highlighter Web Highlighter
ID laoclledadegilngghaiilbepfgpekil
आधिकारिक URL https://chromewebstore.google.com/detail/web-highlighter/laoclledadegilngghaiilbepfgpekil
विवरण This extension will help you store and highlight phrases or chunks of text, and add description if needed.
फ़ाइल का आकार 261 KB
स्थापना संख्या 3,629
वर्तमान संस्करण 0.3.3
अंतिम अपडेट 2020-07-17
प्रकाशन तिथि 2020-06-01
रेटिंग 3.71/5 कुल 7 रेटिंग्स
डेवलपर jfernando0911
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Web Highlighter",
    "description": "This extension will help you store and highlight phrases or chunks of text, and add description if needed.",
    "version": "0.3.3",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "css": [
                "highlightStyle.css"
            ],
            "js": [
                "mark.es6.min.js",
                "contentScript.js",
                "Functions.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Web Highlighter"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "tabs"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "Functions.js",
            "backgroundScript.js"
        ]
    }
}