TrollFace Everywhere

Replaces (most) images in page by a trollface

Cos'è TrollFace Everywhere?

TrollFace Everywhere è un'estensione di Chrome sviluppata da Platon Devs, e la sua funzione principale è "Replaces (most) images in page by a trollface".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione TrollFace Everywhere

Scarica i file di estensione TrollFace Everywhere in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome TrollFace Everywhere TrollFace Everywhere
ID afnpaldkfdjklpjphnpaokdafmgpidhn
URL Ufficiale https://chromewebstore.google.com/detail/trollface-everywhere/afnpaldkfdjklpjphnpaokdafmgpidhn
Descrizione Replaces (most) images in page by a trollface
Dimensione del File 44.31 KB
Conteggio Installazioni 3,000
Versione Corrente 3.0
Ultimo Aggiornamento 2023-10-24
Data di Pubblicazione 2020-01-23
Valutazione 5.00/5 Totale 6 Valutazioni
Sviluppatore Platon Devs
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://platondevs.nl/trollface-everywhere-extension-released/
URL della Pagina di Aiuto https://platondevs.nl/privacy/
URL della Pagina della Politica sulla Privacy https://platondevs.nl/privacy
Lingue Supportate 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"
        }
    }
}