v2ex 悬停名片
鼠标经过用户名或者头像时,自动展示该用户的简介信息。
What is v2ex 悬停名片?
v2ex 悬停名片 is a Chrome extension developed by Harvey, and its main feature is "鼠标经过用户名或者头像时,自动展示该用户的简介信息。".
Extension Screenshots
Download v2ex 悬停名片 Extension CRX File
Download v2ex 悬停名片 extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
使用说明 ------------------ 在www.v2ex.com上面,当鼠标经过用户名或者头像时,自动展示该用户的简介信息。 官方网站 ------------------ https://github.com/zhw2590582/v2ex-card 隐私政策 ------------------ https://zhw2590582.github.io/v2ex-card/privacy.html 开源协议 ------------------ MIT https://github.com/zhw2590582/v2ex-card/blob/master/LICENSE
Extension Basic Information
Name | v2ex 悬停名片 |
ID | mjkbenjlcheekihglddgaokeggnlgncd |
Official URL | https://chromewebstore.google.com/detail/v2ex-%E6%82%AC%E5%81%9C%E5%90%8D%E7%89%87/mjkbenjlcheekihglddgaokeggnlgncd |
Description | 鼠标经过用户名或者头像时,自动展示该用户的简介信息。 |
File Size | 135 KB |
Installation Count | 100 |
Current Version | 1.0.1 |
Last Updated | 2020-08-23 |
Publish Date | 2020-08-10 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Harvey |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/zhw2590582/v2ex-card |
Help Page URL | https://github.com/zhw2590582/v2ex-card/issues |
Privacy Policy Page URL | https://aimu.app/privacy-policy.html |
Supported Languages | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "v2ex \u60ac\u505c\u540d\u7247", "version": "1.0.1", "description": "\u9f20\u6807\u7ecf\u8fc7\u7528\u6237\u540d\u6216\u8005\u5934\u50cf\u65f6\uff0c\u81ea\u52a8\u5c55\u793a\u8be5\u7528\u6237\u7684\u7b80\u4ecb\u4fe1\u606f\u3002", "manifest_version": 2, "background": { "scripts": [ "background\/index.js" ] }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": [], "permissions": [ "*:\/\/*.v2ex.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.v2ex.com\/*" ], "js": [ "content\/index.js" ] } ], "web_accessible_resources": [ "injected\/index.js", "injected\/index.css" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |