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
Eメール [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"
    }
}