TrollFace Everywhere

Replaces (most) images in page by a trollface

TrollFace Everywhereคืออะไร?

TrollFace Everywhere เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Platon Devs และคุณลักษณะหลักของมันคือ "Replaces (most) images in page by a trollface"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TrollFace Everywhere

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    }
}