TrollFace Everywhere

Replaces (most) images in page by a trollface

TrollFace Everywhere là gì?

TrollFace Everywhere là một tiện ích mở rộng Chrome được phát triển bởi Platon Devs, và tính năng chính của nó là "Replaces (most) images in page by a trollface".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng TrollFace Everywhere

Tải xuống các tệp mở rộng TrollFace Everywhere dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TrollFace Everywhere TrollFace Everywhere
ID afnpaldkfdjklpjphnpaokdafmgpidhn
URL Chính Thức https://chromewebstore.google.com/detail/trollface-everywhere/afnpaldkfdjklpjphnpaokdafmgpidhn
Mô tả Replaces (most) images in page by a trollface
Kích Thước Tệp 44.31 KB
Số Lần Cài Đặt 3,000
Phiên Bản Hiện Tại 3.0
Cập Nhật Lần Cuối 2023-10-24
Ngày Phát Hành 2020-01-23
Đánh Giá 5.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Platon Devs
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://platondevs.nl/trollface-everywhere-extension-released/
URL Trang Trợ Giúp https://platondevs.nl/privacy/
URL Trang Chính Sách Bảo Mật https://platondevs.nl/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}