Turdifier

Let you select some words that will be replaced by the poo emoji on every pages

ما هو Turdifier؟

Turdifier هو إضافة Chrome تم تطويرها بواسطة http://antoine.work، والميزة الرئيسية لها هي "Let you select some words that will be replaced by the poo emoji on every pages".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Turdifier

قم بتنزيل ملفات الامتداد Turdifier بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        This extension let you choose a list of words that will be replaced by the "pile of poo" unicode character. The original font size of the word will be unchanged.

It also replace the choosen words in page title but might produce weird characters on old OS.

Found a bug ? need a feature ? Please send me a mail at [email protected]                    

معلومات أساسية عن التمديد

الاسم Turdifier Turdifier
ID pacfpdfkogneijkijmgjhdfghhfklbno
عنوان URL الرسمي https://chrome.google.com/webstore/detail/turdifier/pacfpdfkogneijkijmgjhdfghhfklbno
الوصف Let you select some words that will be replaced by the poo emoji on every pages
حجم الملف 28.17 KB
عدد التثبيتات 58
النسخة الحالية 1.0
آخر تحديث 2017-11-02
تاريخ النشر 2017-11-02
تقييم 4.00/5 مجموع تقييمات 8
المطور http://antoine.work
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://lab.antoine.work/turdifier/
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Turdifier",
    "short_name": "Turdifier",
    "description": "Let you select some words that will be replaced by the poo emoji on every pages",
    "version": "1.0",
    "icons": {
        "128": "icon_128.png"
    },
    "author": "Antoine Guillien",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ],
    "browser_action": {
        "default_title": "Turdify",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "popup.js"
        ],
        "persistent": false
    },
    "manifest_version": 2
}