Hide Mouse

Hides mouse in fullscreen

What is Hide Mouse?

Hide Mouse is a Chrome extension developed by Ryan Gerald Conley, and its main feature is "Hides mouse in fullscreen".

Extension Screenshots

screenshot

Download Hide Mouse Extension CRX File

Download Hide Mouse extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Hides your mouse when viewing videos in fullscreen on less modern video players. It doesn't affect more modern players like Youtube's that do this automatically. Just click the icon if you want to enable/disable the extension.                    

Extension Basic Information

Name Hide Mouse Hide Mouse
ID fhailkcelmfnlidlgejaggffjepcemok
Official URL https://chromewebstore.google.com/detail/hide-mouse/fhailkcelmfnlidlgejaggffjepcemok
Description Hides mouse in fullscreen
File Size 37.28 KB
Installation Count 751
Current Version 1.0
Last Updated 2016-08-11
Publish Date 2016-08-11
Rating 3.35/5 Total 26 Ratings
Developer Ryan Gerald Conley
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hide Mouse",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Hides mouse in fullscreen",
    "icons": {
        "128": "hide-mouse.png"
    },
    "browser_action": [],
    "author": "Ryan Gerald Conley",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}