Verify Me

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

Apa itu Verify Me?

Verify Me adalah ekstensi Chrome yang dikembangkan oleh https://kevinmarks.com, dan fitur utamanya adalah "Add a button to the browser to check rel=me links point back".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Verify Me

Unduh file ekstensi Verify Me dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Verify Me Verify Me
ID nnefkajddpfponfnmaflddipljfdlcjb
URL Resmi https://chromewebstore.google.com/detail/verify-me/nnefkajddpfponfnmaflddipljfdlcjb
Deskripsi Add a button to the browser to check rel=me links point back
Ukuran File 24.16 KB
Jumlah Instalasi 557
Versi Saat Ini 0.3.1
Terakhir Diperbarui 2018-11-04
Tanggal Publikasi 2018-11-03
Penilaian 5.00/5 Total 2 Penilaian
Pengembang https://kevinmarks.com
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi https://github.com/indieweb/verify-me
Bahasa yang Didukung 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"
    }
}