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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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/
عنوان صفحة المساعدة https://platondevs.nl/privacy/
عنوان صفحة سياسة الخصوصية 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"
        }
    }
}