Hide Mouse

Hides mouse in fullscreen

Hide Mouse क्या है?

Hide Mouse Ryan Gerald Conley द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hides mouse in fullscreen"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Hide Mouse एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
        }
    ]
}