Filter Remover

Bring color back to website. In case of async content loading. click on icon again to run script manually.

ما هو Filter Remover؟

Filter Remover هو إضافة Chrome تم تطويرها بواسطة Pesticide، والميزة الرئيسية لها هي "Bring color back to website. In case of async content loading. click on icon again to run script manually.".

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

screenshot

تحميل ملف CRX للإضافة Filter Remover

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

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

                        Bring color back to website. It remove filter: grayscale automatically when page load. In case of asynchronous content loading, please click icon again to run it manually.

Support old chrome version with webkit.Filter                    

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

الاسم Filter Remover Filter Remover
ID bfebennjaidcjckomeokmaeieoidhieb
عنوان URL الرسمي https://chromewebstore.google.com/detail/filter-remover/bfebennjaidcjckomeokmaeieoidhieb
الوصف Bring color back to website. In case of async content loading. click on icon again to run script manually.
حجم الملف 19.7 KB
عدد التثبيتات 80
النسخة الحالية 1.1.1
آخر تحديث 2016-10-19
تاريخ النشر 2016-10-19
تقييم 4.88/5 مجموع تقييمات 8
المطور Pesticide
نوع الدفع free
اللغات المدعومة th
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Filter Remover",
    "description": "Bring color back to website. In case of async content loading. click on icon again to run script manually.",
    "version": "1.1.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_title": "click here to run color script manually."
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "activeTab"
    ]
}