TrollFace Everywhere

Replaces (most) images in page by a trollface

Что такое TrollFace Everywhere?

TrollFace Everywhere - это расширение Chrome, разработанное Platon Devs, и его основная функция - "Replaces (most) images in page by a trollface".

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

screenshot
screenshot

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

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

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

                        Do you want to troll your friends? Just install this extension in their chrome... and laugh seeing them going bananas.
What does it do?
- If enabled, it will replace images in a page by a TrollFace
- If enabled the rickrolling feature it will hijack all YouTube reproductions and redirect the video to Rick Astley after some initial playing

How to pause it?
- Version 3.0 allows you to enable/disable independently images/video with a checkbox dropdown
- Of course, you can always disable the extension

The features of this extension are not promoted nor endorsed                    

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

Название TrollFace Everywhere TrollFace Everywhere
ID afnpaldkfdjklpjphnpaokdafmgpidhn
Официальный URL https://chromewebstore.google.com/detail/trollface-everywhere/afnpaldkfdjklpjphnpaokdafmgpidhn
Описание Replaces (most) images in page by a trollface
Размер файла 44.31 KB
Количество установок 3,000
Текущая Версия 3.0
Последнее Обновление 2023-10-24
Дата публикации 2020-01-23
Рейтинг 5.00/5 Всего 6 оценок
Разработчик Platon Devs
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://platondevs.nl/trollface-everywhere-extension-released/
URL страницы помощи https://platondevs.nl/privacy/
URL страницы политики конфиденциальности https://platondevs.nl/privacy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "TrollFace Everywhere",
    "short_name": "TrollFaceEverywhere",
    "description": "Replaces (most) images in page by a trollface",
    "version": "3.0",
    "web_accessible_resources": [
        {
            "resources": [
                "*.webp"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "replacebytroll.min.js",
                "replacebyrick.min.js"
            ]
        }
    ],
    "icons": {
        "128": "trollface_128.png"
    },
    "author": {
        "name": "Platon Devs"
    },
    "action": {
        "default_popup": "popup.min.html",
        "default_icon": {
            "128": "trollface_128.png"
        }
    }
}