TrollFace Everywhere

Replaces (most) images in page by a trollface

Was ist TrollFace Everywhere?

TrollFace Everywhere ist eine Chrome-Erweiterung, die von Platon Devs entwickelt wurde, und ihr Hauptmerkmal ist "Replaces (most) images in page by a trollface".

Erweiterungsscreenshots

screenshot
screenshot

TrollFace Everywhere-Erweiterungs-CRX-Datei herunterladen

Laden Sie TrollFace Everywhere-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name TrollFace Everywhere TrollFace Everywhere
ID afnpaldkfdjklpjphnpaokdafmgpidhn
Offizielle URL https://chromewebstore.google.com/detail/trollface-everywhere/afnpaldkfdjklpjphnpaokdafmgpidhn
Beschreibung Replaces (most) images in page by a trollface
Dateigröße 44.31 KB
Installationsanzahl 3,000
Aktuelle Version 3.0
Letztes Update 2023-10-24
Veröffentlichungsdatum 2020-01-23
Bewertung 5.00/5 Insgesamt 6 Bewertungen
Entwickler Platon Devs
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://platondevs.nl/trollface-everywhere-extension-released/
Hilfeseite URL https://platondevs.nl/privacy/
URL der Datenschutzrichtlinien-Seite https://platondevs.nl/privacy
Unterstützte Sprachen 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"
        }
    }
}