TrollFace Everywhere

Replaces (most) images in page by a trollface

O que é TrollFace Everywhere?

TrollFace Everywhere é uma extensão do Chrome desenvolvida por Platon Devs, e sua principal característica é "Replaces (most) images in page by a trollface".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão TrollFace Everywhere

Baixe arquivos de extensão TrollFace Everywhere no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome TrollFace Everywhere TrollFace Everywhere
ID afnpaldkfdjklpjphnpaokdafmgpidhn
URL Oficial https://chromewebstore.google.com/detail/trollface-everywhere/afnpaldkfdjklpjphnpaokdafmgpidhn
Descrição Replaces (most) images in page by a trollface
Tamanho do Arquivo 44.31 KB
Contagem de Instalações 3,000
Versão Atual 3.0
Última Atualização 2023-10-24
Data de Publicação 2020-01-23
Classificação 5.00/5 Total de 6 Avaliações
Desenvolvedor Platon Devs
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://platondevs.nl/trollface-everywhere-extension-released/
URL da Página de Ajuda https://platondevs.nl/privacy/
URL da Página de Política de Privacidade https://platondevs.nl/privacy
Idiomas Suportados 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"
        }
    }
}