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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
(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\/*" ] } |