Trollface Me Chrome Extension

Play a trick to your people, drive them crazy by displaying sometimes a quick but huge trollface while they surf the Internet.

Что такое Trollface Me Chrome Extension?

Trollface Me Chrome Extension - это расширение Chrome, разработанное Emmanuel Vrebos, и его основная функция - "Play a trick to your people, drive them crazy by displaying sometimes a quick but huge trollface while they surf the Internet.".

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

screenshot

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

Скачайте файлы расширений Trollface Me Chrome Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Prank your non geek colleagues and friends, drive them crazy by displaying a trollface from time to time during their web browsing.                    

Основная информация о расширении

Название Trollface Me Chrome Extension Trollface Me Chrome Extension
ID ecmpibgedidegahdhdcbnhhanjhljonh
Официальный URL https://chromewebstore.google.com/detail/trollface-me-chrome-exten/ecmpibgedidegahdhdcbnhhanjhljonh
Описание Play a trick to your people, drive them crazy by displaying sometimes a quick but huge trollface while they surf the Internet.
Размер файла 30.37 KB
Количество установок 18
Текущая Версия 1.0.1
Последнее Обновление 2023-01-05
Дата публикации 2023-01-04
Разработчик Emmanuel Vrebos
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/emvrebos/trollface-me/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Trollface Me Chrome Extension",
    "description": "Play a trick to your people, drive them crazy by displaying sometimes a quick but huge trollface while they surf the Internet.",
    "homepage_url": "https:\/\/github.com\/emvrebos",
    "version": "1.0.1",
    "manifest_version": 3,
    "action": {
        "default_title": "Trollface Me",
        "default_icon": {
            "16": "icons\/icon-48.png",
            "48": "icons\/icon-48.png",
            "128": "icons\/icon-48.png"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/trollface.svg"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "run_at": "document_idle",
            "js": [
                "after.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}