Hide Mouse

Hides mouse in fullscreen

Hide Mouseคืออะไร?

Hide Mouse เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ryan Gerald Conley และคุณลักษณะหลักของมันคือ "Hides mouse in fullscreen"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hide Mouse

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    ]
}