Verify Me

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

Co to jest Verify Me?

Verify Me to rozszerzenie Chrome opracowane przez https://kevinmarks.com, a jego główną funkcją jest „Add a button to the browser to check rel=me links point back”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Verify Me

Pobierz pliki rozszerzeń Verify Me w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Verify Me Verify Me
ID nnefkajddpfponfnmaflddipljfdlcjb
Oficjalny URL https://chromewebstore.google.com/detail/verify-me/nnefkajddpfponfnmaflddipljfdlcjb
Opis Add a button to the browser to check rel=me links point back
Rozmiar pliku 24.16 KB
Liczba instalacji 557
Aktualna Wersja 0.3.1
Ostatnia Aktualizacja 2018-11-04
Data Publikacji 2018-11-03
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper https://kevinmarks.com
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://github.com/indieweb/verify-me
Obsługiwane Języki 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"
    }
}