TrollFace Everywhere

Replaces (most) images in page by a trollface

Vad är TrollFace Everywhere?

TrollFace Everywhere är en Chrome-tillägg utvecklad av Platon Devs, och dess huvudfunktion är "Replaces (most) images in page by a trollface".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner TrollFace Everywhere-förlängningens CRX-fil

Ladda ner TrollFace Everywhere-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn TrollFace Everywhere TrollFace Everywhere
ID afnpaldkfdjklpjphnpaokdafmgpidhn
Officiell webbadress https://chromewebstore.google.com/detail/trollface-everywhere/afnpaldkfdjklpjphnpaokdafmgpidhn
Beskrivning Replaces (most) images in page by a trollface
Filstorlek 44.31 KB
Antal Installationer 3,000
Aktuell Version 3.0
Senast Uppdaterad 2023-10-24
Publiceringsdatum 2020-01-23
Betyg 5.00/5 Totalt 6 Betyg
Utvecklare Platon Devs
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://platondevs.nl/trollface-everywhere-extension-released/
Hjälpsida URL https://platondevs.nl/privacy/
URL till Sekretesspolicy Sidan https://platondevs.nl/privacy
Stödda Språk 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"
        }
    }
}