Facepunch Fixer

Every piece of functionality is now an option that can be enabled/disabled from the options page. Media in quoted posts that was…

ما هو Facepunch Fixer؟

Facepunch Fixer هو إضافة Chrome تم تطويرها بواسطة Laharl، والميزة الرئيسية لها هي "Every piece of functionality is now an option that can be enabled/disabled from the options page. Media in quoted posts that was…".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Facepunch Fixer

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

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

                        Every piece of functionality is now an option that can be enabled/disabled from the options page.

Media in quoted posts that was embedded in the original post will now be embedded in the quote.  There is more than likely an error with this somewhere, but I haven't found any yet.  Can definitely cause some weird formatting.  Works (usually) for:  tags, 

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

الاسم Facepunch Fixer Facepunch Fixer
ID bpfmgikmjbhelahhkefalkabjhoddped
عنوان URL الرسمي https://chrome.google.com/webstore/detail/facepunch-fixer/bpfmgikmjbhelahhkefalkabjhoddped
الوصف Every piece of functionality is now an option that can be enabled/disabled from the options page. Media in quoted posts that was…
حجم الملف 35.25 KB
عدد التثبيتات 34
النسخة الحالية 1.4.3
آخر تحديث 2018-03-24
تاريخ النشر 2018-03-24
تقييم 5.00/5 مجموع تقييمات 2
المطور Laharl
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://forum.facepunch.com/f/meta/bskxx/1/
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Facepunch Fixer",
    "options_page": "options.html",
    "version": "1.4.3",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/forum.facepunch.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "128": "icon.png",
        "64": "icon.png",
        "32": "icon.png",
        "16": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "storage",
        "https:\/\/forum.facepunch.com\/"
    ]
}