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"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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 |
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\/*" ] } |