NoFlash

Speed up your browsing disabling heavy objects that may slow down the page load and rendering (flash, pdf, ads, etc)

ما هو NoFlash؟

NoFlash هو إضافة Chrome تم تطويرها بواسطة Denis Ciccale، والميزة الرئيسية لها هي "Speed up your browsing disabling heavy objects that may slow down the page load and rendering (flash, pdf, ads, etc)".

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

screenshot

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

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

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

                        Speed up your browsing disabling not only flash, but any heavy object element that may slow down the page load and rendering (pdf, ads, etc).

### Re-enabling
These objects (flash, pdf, etc) will be replaced with a button you can click to load the original stuff anytime you want while seeing the page.

### White List
Edit your personal white list of sites to always allow flash, pdf, etc.
Nice defaults are included: youtube.com, google.com, facebook.com, vimeo.com.                    

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

الاسم NoFlash NoFlash
ID ihlokjecoapdjjliamfaondpgkebpcjj
عنوان URL الرسمي https://chrome.google.com/webstore/detail/noflash/ihlokjecoapdjjliamfaondpgkebpcjj
الوصف Speed up your browsing disabling heavy objects that may slow down the page load and rendering (flash, pdf, ads, etc)
حجم الملف 393 KB
عدد التثبيتات 236
النسخة الحالية 1.0.2
آخر تحديث 2013-11-18
تاريخ النشر 2013-11-18
تقييم 2.67/5 مجموع تقييمات 3
المطور Denis Ciccale
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NoFlash",
    "description": "Speed up your browsing disabling heavy objects that may slow down the page load and rendering (flash, pdf, ads, etc)",
    "version": "1.0.2",
    "browser_action": {
        "default_icon": "src\/img\/icon48.png",
        "default_popup": "src\/options.html",
        "default_title": "NoFlash"
    },
    "background": {
        "scripts": [
            "src\/js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "css": [
                "src\/css\/noflash.css"
            ],
            "js": [
                "src\/js\/noflash.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "src\/options.html",
    "permissions": [
        "tabs"
    ],
    "icons": {
        "16": "src\/img\/icon16.png",
        "48": "src\/img\/icon48.png",
        "128": "src\/img\/icon128.png"
    }
}