TrollFace Everywhere

Replaces (most) images in page by a trollface

什么是TrollFace Everywhere?

TrollFace Everywhere是由Platon Devs开发的Chrome扩展程序,该扩展的主要功能是“Replaces (most) images in page by a trollface”。

扩展截图

screenshot
screenshot

下载TrollFace Everywhere扩展crx文件

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