Hair on Screen
Displays a helpful hair on the screen
Qu'est-ce que Hair on Screen ?
Hair on Screen est une extension Chrome développée par 0x00019913, et sa fonction principale est "Displays a helpful hair on the screen".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Hair on Screen
Téléchargez les fichiers d'extension Hair on Screen au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
(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!
Informations de Base sur l'Extension
Nom | Hair on Screen |
ID | egkikapjpndmjflbjjoondbihalgdjco |
URL Officiel | https://chromewebstore.google.com/detail/hair-on-screen/egkikapjpndmjflbjjoondbihalgdjco |
Description | Displays a helpful hair on the screen |
Taille du Fichier | 257 KB |
Nombre d'Installations | 37,296 |
Version Actuelle | 0.0.0.1 |
Dernière Mise à Jour | 2017-11-01 |
Date de Publication | 2017-11-01 |
Évaluation | 3.45/5 Total 65 Évaluations |
Développeur | 0x00019913 |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/0x00019913/HairOnScreen |
Langues Prises en Charge | 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\/*" ] } |