Hair on Screen
Displays a helpful hair on the screen
Hair on Screenとは何ですか?
Hair on Screenは0x00019913によって開発されたChromeの拡張機能で、その主な機能は「Displays a helpful hair on the screen」です。
拡張機能のスクリーンショット
Hair on Screen拡張機能のCRXファイルをダウンロード
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 |
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\/*" ] } |