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
官方網址 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"
    }
}