Web Highlighter

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

Vad är Web Highlighter?

Web Highlighter är en Chrome-tillägg utvecklad av jfernando0911, och dess huvudfunktion är "This extension will help you store and highlight phrases or chunks of text, and add description if needed.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Web Highlighter-förlängningens CRX-fil

Ladda ner Web Highlighter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Web Highlighter Web Highlighter
ID laoclledadegilngghaiilbepfgpekil
Officiell webbadress https://chromewebstore.google.com/detail/web-highlighter/laoclledadegilngghaiilbepfgpekil
Beskrivning This extension will help you store and highlight phrases or chunks of text, and add description if needed.
Filstorlek 261 KB
Antal Installationer 3,629
Aktuell Version 0.3.3
Senast Uppdaterad 2020-07-17
Publiceringsdatum 2020-06-01
Betyg 3.71/5 Totalt 7 Betyg
Utvecklare jfernando0911
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        ]
    }
}