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 |
官方網址 | 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\/*" ] } |