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"
        }
    }
}