Hair on Screen

Displays a helpful hair on the screen

Cos'è Hair on Screen?

Hair on Screen è un'estensione di Chrome sviluppata da 0x00019913, e la sua funzione principale è "Displays a helpful hair on the screen".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Hair on Screen

Scarica i file di estensione Hair on Screen in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        (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!                    

Informazioni di Base sull'Estensione

Nome Hair on Screen Hair on Screen
ID egkikapjpndmjflbjjoondbihalgdjco
URL Ufficiale https://chromewebstore.google.com/detail/hair-on-screen/egkikapjpndmjflbjjoondbihalgdjco
Descrizione Displays a helpful hair on the screen
Dimensione del File 257 KB
Conteggio Installazioni 37,296
Versione Corrente 0.0.0.1
Ultimo Aggiornamento 2017-11-01
Data di Pubblicazione 2017-11-01
Valutazione 3.45/5 Totale 65 Valutazioni
Sviluppatore 0x00019913
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/0x00019913/HairOnScreen
Lingue Supportate 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\/*"
    ]
}