Hair on Screen

Displays a helpful hair on the screen

Τι είναι το Hair on Screen;

Το Hair on Screen είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον 0x00019913, και η κύρια λειτουργία του είναι "Displays a helpful hair on the screen".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Hair on Screen

Λήψη αρχείων επέκτασης Hair on Screen σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        (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\/*"
    ]
}