Hair on Screen

Displays a helpful hair on the screen

Hair on Screen क्या है?

Hair on Screen 0x00019913 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays a helpful hair on the screen"।

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

screenshot

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

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

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

                        (This is an obviously undesirable thing to have on your computer and I do not in any way imply that stealth-installing it on someone else's machine will be taken in stride, nor do I take any responsibility for the consequences of this extension's existence.)

Displays a helpful hair on the screen for your viewing pleasure!

Right-click the browser action (the extension icon in the top right of the Chrome window) for options, including more hair, less hair, and randomized hair!                    

एक्सटेंशन की मूल जानकारी

नाम Hair on Screen Hair on Screen
ID egkikapjpndmjflbjjoondbihalgdjco
आधिकारिक URL https://chromewebstore.google.com/detail/hair-on-screen/egkikapjpndmjflbjjoondbihalgdjco
विवरण Displays a helpful hair on the screen
फ़ाइल का आकार 257 KB
स्थापना संख्या 37,296
वर्तमान संस्करण 0.0.0.1
अंतिम अपडेट 2017-11-01
प्रकाशन तिथि 2017-11-01
रेटिंग 3.45/5 कुल 65 रेटिंग्स
डेवलपर 0x00019913
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/0x00019913/HairOnScreen
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hair on Screen",
    "description": "Displays a helpful hair on the screen",
    "version": "0.0.0.1",
    "author": "Anton Bovin",
    "browser_action": {
        "default_icon": "assets\/icons\/icon128.png"
    },
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    },
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "content_script_style.css"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "assets\/*"
    ]
}