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
官方網址 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"
        }
    }
}