Hide Mouse

Hides mouse in fullscreen

什么是Hide Mouse?

Hide Mouse是由Ryan Gerald Conley开发的Chrome扩展程序,该扩展的主要功能是“Hides mouse in fullscreen”。

扩展截图

screenshot

下载Hide Mouse扩展crx文件

下载Hide Mouse扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Hide Mouse Hide Mouse
ID fhailkcelmfnlidlgejaggffjepcemok
官方URL https://chromewebstore.google.com/detail/hide-mouse/fhailkcelmfnlidlgejaggffjepcemok
简介 Hides mouse in fullscreen
文件大小 37.28 KB
安装次数 751
当前版本 1.0
更新时间 2016-08-11
上架时间 2016-08-11
评分 3.35/5 共26次评分
开发者 Ryan Gerald Conley
付费类型 free
支持的语言 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"
        }
    ]
}