Highlight Me

This simple tool allows you to highlight selected text on web pages. - You can choose among a variety of background colors. - You…

Hvad er Highlight Me?

Highlight Me er en Chrome-udvidelse udviklet af Faycal Bessayah, og dens hovedfunktion er "This simple tool allows you to highlight selected text on web pages. - You can choose among a variety of background colors. - You…".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Highlight Me-udvidelses-CRX-fil

Download Highlight Me-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        This simple tool allows you to highlight selected text on web pages.
- You can choose among a variety of background colors.
- You can point out important information in long web pages by highlighting text with your mouse.

* You need to refresh opened pages after installation.                    

Grundlæggende oplysninger om udvidelsen

Navn Highlight Me Highlight Me
ID ddpcccogmbnjklniagfkclpbohhaoidf
Officiel URL https://chromewebstore.google.com/detail/highlight-me/ddpcccogmbnjklniagfkclpbohhaoidf
Beskrivelse This simple tool allows you to highlight selected text on web pages. - You can choose among a variety of background colors. - You…
Filstørrelse 265 KB
Antal Installationer 27
Nuværende Version 1.0
Senest Opdateret 2021-03-14
Udgivelsesdato 2021-01-09
Udvikler Faycal Bessayah
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Highlight Me",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "colorPick.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_icon": "Highlight.png",
        "default_popup": "index.html",
        "default_title": "Highlight Me"
    }
}