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)」です。
拡張機能のスクリーンショット
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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
} | |