TrollFace Everywhere

Replaces (most) images in page by a trollface

Co je TrollFace Everywhere?

TrollFace Everywhere je rozšíření Chrome vyvinuté Platon Devs, a jeho hlavní funkcí je „Replaces (most) images in page by a trollface“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření TrollFace Everywhere

Stáhněte si soubory rozšíření TrollFace Everywhere ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název TrollFace Everywhere TrollFace Everywhere
ID afnpaldkfdjklpjphnpaokdafmgpidhn
Oficiální URL https://chromewebstore.google.com/detail/trollface-everywhere/afnpaldkfdjklpjphnpaokdafmgpidhn
Popis Replaces (most) images in page by a trollface
Velikost souboru 44.31 KB
Počet instalací 3,000
Aktuální Verze 3.0
Poslední Aktualizace 2023-10-24
Datum Vydání 2020-01-23
Hodnocení 5.00/5 Celkem 6 Hodnocení
Vývojář Platon Devs
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://platondevs.nl/trollface-everywhere-extension-released/
URL Stránky Nápovědy https://platondevs.nl/privacy/
URL Stránky Zásad Ochrany Soukromí https://platondevs.nl/privacy
Podporované Jazyky 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"
        }
    }
}