v2ex 悬停名片
鼠标经过用户名或者头像时,自动展示该用户的简介信息。
v2ex 悬停名片とは何ですか?
v2ex 悬停名片はHarveyによって開発されたChromeの拡張機能で、その主な機能は「鼠标经过用户名或者头像时,自动展示该用户的简介信息。」です。
拡張機能のスクリーンショット
v2ex 悬停名片拡張機能のCRXファイルをダウンロード
v2ex 悬停名片拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
使用说明
------------------
在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 拡張機能の基本情報
| 名前 | |
| ID | mjkbenjlcheekihglddgaokeggnlgncd |
| 公式URL | https://chromewebstore.google.com/detail/v2ex-%E6%82%AC%E5%81%9C%E5%90%8D%E7%89%87/mjkbenjlcheekihglddgaokeggnlgncd |
| 説明 | 鼠标经过用户名或者头像时,自动展示该用户的简介信息。 |
| ファイルサイズ | 135 KB |
| インストール数 | 100 |
| 現在のバージョン | 1.0.1 |
| 最終更新日 | 2020-08-23 |
| 公開日 | 2020-08-10 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | Harvey |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/zhw2590582/v2ex-card |
| ヘルプページのURL | https://github.com/zhw2590582/v2ex-card/issues |
| プライバシーポリシーページのURL | https://aimu.app/privacy-policy.html |
| 対応言語 | 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'"
} | |