TrollFace Everywhere

Replaces (most) images in page by a trollface

Co to jest TrollFace Everywhere?

TrollFace Everywhere to rozszerzenie Chrome opracowane przez Platon Devs, a jego główną funkcją jest „Replaces (most) images in page by a trollface”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia TrollFace Everywhere

Pobierz pliki rozszerzeń TrollFace Everywhere 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

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa TrollFace Everywhere TrollFace Everywhere
ID afnpaldkfdjklpjphnpaokdafmgpidhn
Oficjalny URL https://chromewebstore.google.com/detail/trollface-everywhere/afnpaldkfdjklpjphnpaokdafmgpidhn
Opis Replaces (most) images in page by a trollface
Rozmiar pliku 44.31 KB
Liczba instalacji 3,000
Aktualna Wersja 3.0
Ostatnia Aktualizacja 2023-10-24
Data Publikacji 2020-01-23
Ocena 5.00/5 Łącznie 6 Oceny
Deweloper Platon Devs
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://platondevs.nl/trollface-everywhere-extension-released/
Adres URL Strony Pomocy https://platondevs.nl/privacy/
Adres URL Strony Polityki Prywatności https://platondevs.nl/privacy
Obsługiwane Języki 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"
        }
    }
}