v2ex 悬停名片
鼠标经过用户名或者头像时,自动展示该用户的简介信息。
Vad är v2ex 悬停名片?
v2ex 悬停名片 är en Chrome-tillägg utvecklad av Harvey, och dess huvudfunktion är "鼠标经过用户名或者头像时,自动展示该用户的简介信息。".
Tilläggsskärmbilder
Ladda ner v2ex 悬停名片-förlängningens CRX-fil
Ladda ner v2ex 悬停名片-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
使用说明
------------------
在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 Grundläggande Information om Tillägg
| Namn | |
| ID | mjkbenjlcheekihglddgaokeggnlgncd |
| Officiell webbadress | https://chromewebstore.google.com/detail/v2ex-%E6%82%AC%E5%81%9C%E5%90%8D%E7%89%87/mjkbenjlcheekihglddgaokeggnlgncd |
| Beskrivning | 鼠标经过用户名或者头像时,自动展示该用户的简介信息。 |
| Filstorlek | 135 KB |
| Antal Installationer | 100 |
| Aktuell Version | 1.0.1 |
| Senast Uppdaterad | 2020-08-23 |
| Publiceringsdatum | 2020-08-10 |
| Betyg | 5.00/5 Totalt 2 Betyg |
| Utvecklare | Harvey |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/zhw2590582/v2ex-card |
| Hjälpsida URL | https://github.com/zhw2590582/v2ex-card/issues |
| URL till Sekretesspolicy Sidan | https://aimu.app/privacy-policy.html |
| Stödda Språk | 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'"
} | |