Verify Me

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

Что такое Verify Me?

Verify Me - это расширение Chrome, разработанное https://kevinmarks.com, и его основная функция - "Add a button to the browser to check rel=me links point back".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Verify Me

Скачайте файлы расширений 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"
    }
}