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開發的Chrome擴展程式,該擴展的主要功能是“Speed up your browsing disabling heavy objects that may slow down the page load and rendering (flash, pdf, ads, etc)”。

擴展截圖

screenshot

下載NoFlash擴展crx文件

下載NoFlash擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}