Highlight Me

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

Vad är Highlight Me?

Highlight Me är en Chrome-tillägg utvecklad av Faycal Bessayah, och dess huvudfunktion är "This simple tool allows you to highlight selected text on web pages. - You can choose among a variety of background colors. - You…".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Highlight Me-förlängningens CRX-fil

Ladda ner Highlight Me-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

                        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äggande Information om Tillägg

Namn Highlight Me Highlight Me
ID ddpcccogmbnjklniagfkclpbohhaoidf
Officiell webbadress https://chromewebstore.google.com/detail/highlight-me/ddpcccogmbnjklniagfkclpbohhaoidf
Beskrivning This simple tool allows you to highlight selected text on web pages. - You can choose among a variety of background colors. - You…
Filstorlek 265 KB
Antal Installationer 27
Aktuell Version 1.0
Senast Uppdaterad 2021-03-14
Publiceringsdatum 2021-01-09
Utvecklare Faycal Bessayah
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}