v2ex 悬停名片

鼠标经过用户名或者头像时,自动展示该用户的简介信息。

Cos'è v2ex 悬停名片?

v2ex 悬停名片 è un'estensione di Chrome sviluppata da Harvey, e la sua funzione principale è "鼠标经过用户名或者头像时,自动展示该用户的简介信息。".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione v2ex 悬停名片

Scarica i file di estensione v2ex 悬停名片 in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        使用说明
------------------
在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                    

Informazioni di Base sull'Estensione

Nome v2ex 悬停名片 v2ex 悬停名片
ID mjkbenjlcheekihglddgaokeggnlgncd
URL Ufficiale https://chromewebstore.google.com/detail/v2ex-%E6%82%AC%E5%81%9C%E5%90%8D%E7%89%87/mjkbenjlcheekihglddgaokeggnlgncd
Descrizione 鼠标经过用户名或者头像时,自动展示该用户的简介信息。
Dimensione del File 135 KB
Conteggio Installazioni 100
Versione Corrente 1.0.1
Ultimo Aggiornamento 2020-08-23
Data di Pubblicazione 2020-08-10
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Harvey
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/zhw2590582/v2ex-card
URL della Pagina di Aiuto https://github.com/zhw2590582/v2ex-card/issues
URL della Pagina della Politica sulla Privacy https://aimu.app/privacy-policy.html
Lingue Supportate 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'"
}