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
Eメール [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"
        }
    }
}