Verify Me

Add a button to the browser to check rel=me links point back

什么是Verify Me?

Verify Me是由https://kevinmarks.com开发的Chrome扩展程序,该扩展的主要功能是“Add a button to the browser to check rel=me links point back”。

扩展截图

screenshot

下载Verify Me扩展crx文件

下载Verify Me扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Looks for rel="me" links on the current page, then check if they link back with a rel="me" too. Shows a green √ or red x depending on whether they do or not.                    

扩展基本信息

名称 Verify Me Verify Me
ID nnefkajddpfponfnmaflddipljfdlcjb
官方URL https://chromewebstore.google.com/detail/verify-me/nnefkajddpfponfnmaflddipljfdlcjb
简介 Add a button to the browser to check rel=me links point back
文件大小 24.16 KB
安装次数 557
当前版本 0.3.1
更新时间 2018-11-04
上架时间 2018-11-03
评分 5.00/5 共2次评分
开发者 https://kevinmarks.com
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://github.com/indieweb/verify-me
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Verify Me",
    "short_name": "Verify Me",
    "description": "Add a button to the browser to check rel=me links point back",
    "version": "0.3.1",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content-scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle",
            "css": [
                "balloons.css"
            ],
            "js": [
                "balloons.js"
            ]
        }
    ],
    "permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "browser_action": {
        "default_title": "Check rel-me links on this page.",
        "default_icon": {
            "19": "icon-32.png",
            "38": "icon-32.png"
        }
    },
    "icons": {
        "32": "icon-32.png",
        "128": "icon.png"
    }
}