NoFlash

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

NoFlash क्या है?

NoFlash Denis Ciccale द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Speed up your browsing disabling heavy objects that may slow down the page load and rendering (flash, pdf, ads, etc)"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में NoFlash एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}