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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}