Hair on Screen
Displays a helpful hair on the screen
What is Hair on Screen?
Hair on Screen is a Chrome extension developed by 0x00019913, and its main feature is "Displays a helpful hair on the screen".
Extension Screenshots
Download Hair on Screen Extension CRX File
Download Hair on Screen extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
(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!
Extension Basic Information
Name | Hair on Screen |
ID | egkikapjpndmjflbjjoondbihalgdjco |
Official URL | https://chromewebstore.google.com/detail/hair-on-screen/egkikapjpndmjflbjjoondbihalgdjco |
Description | Displays a helpful hair on the screen |
File Size | 257 KB |
Installation Count | 37,296 |
Current Version | 0.0.0.1 |
Last Updated | 2017-11-01 |
Publish Date | 2017-11-01 |
Rating | 3.45/5 Total 65 Ratings |
Developer | 0x00019913 |
Payment Type | free |
Extension Website | https://github.com/0x00019913/HairOnScreen |
Supported Languages | 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\/*" ] } |