Mouse Pointer Highliter

Mouse Pointer Highliter that shows only the portion of the mouse pointer, Developed by Debug Media

Vad är Mouse Pointer Highliter?

Mouse Pointer Highliter är en Chrome-tillägg utvecklad av Debug Media, och dess huvudfunktion är "Mouse Pointer Highliter that shows only the portion of the mouse pointer, Developed by Debug Media".

Tilläggsskärmbilder

screenshot

Ladda ner Mouse Pointer Highliter-förlängningens CRX-fil

Ladda ner Mouse Pointer Highliter-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 will hide all the elements on the screen except the portion of your mouse pointer, This is going to be very useful when you are taking online classes if you want them to focus on the section you are reading / explaining then you just have to point to that section and only that section will be visible                    

Grundläggande Information om Tillägg

Namn Mouse Pointer Highliter Mouse Pointer Highliter
ID fpnbcnljcbokdgeiihchnhobbokloaon
Officiell webbadress https://chromewebstore.google.com/detail/mouse-pointer-highliter/fpnbcnljcbokdgeiihchnhobbokloaon
Beskrivning Mouse Pointer Highliter that shows only the portion of the mouse pointer, Developed by Debug Media
Filstorlek 4.68 KB
Antal Installationer 21
Aktuell Version 1.0.0
Senast Uppdaterad 2020-08-14
Publiceringsdatum 2020-08-13
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Debug Media
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.youtube.com/debugmedia
Hjälpsida URL https://www.youtube.com/debugmedia
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mouse Pointer Highliter",
    "version": "1.0.0",
    "description": "Mouse Pointer Highliter that shows only the portion of the mouse pointer, Developed by Debug Media",
    "manifest_version": 2,
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}