NoFlash

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

Was ist NoFlash?

NoFlash ist eine Chrome-Erweiterung, die von Denis Ciccale entwickelt wurde, und ihr Hauptmerkmal ist "Speed up your browsing disabling heavy objects that may slow down the page load and rendering (flash, pdf, ads, etc)".

Erweiterungsscreenshots

screenshot

NoFlash-Erweiterungs-CRX-Datei herunterladen

Laden Sie NoFlash-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name NoFlash NoFlash
ID ihlokjecoapdjjliamfaondpgkebpcjj
Offizielle URL https://chrome.google.com/webstore/detail/noflash/ihlokjecoapdjjliamfaondpgkebpcjj
Beschreibung Speed up your browsing disabling heavy objects that may slow down the page load and rendering (flash, pdf, ads, etc)
Dateigröße 393 KB
Installationsanzahl 236
Aktuelle Version 1.0.2
Letztes Update 2013-11-18
Veröffentlichungsdatum 2013-11-18
Bewertung 2.67/5 Insgesamt 3 Bewertungen
Entwickler Denis Ciccale
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}