Maximize Flash

Make a flash video use as much screen size as the tab it's in and the aspect ratio allows, without causing the video to reload.

Maximize Flashとは何ですか?

Maximize FlashはScott Glajchによって開発されたChromeの拡張機能で、その主な機能は「Make a flash video use as much screen size as the tab it's in and the aspect ratio allows, without causing the video to reload.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Maximize Flash拡張機能のCRXファイルをダウンロード

Maximize Flash拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Log feature requests and issues at https://github.com/glajchs/maximize-flash-chrome/issues

Version 1.3
- Make a special case for youtube HTML5 videos to expand the player controls as well.  Youtube uses a separate div for HTML5 player controls and the actual video.

Version 1.2
- Fix a bug where the maximize/restore icon sometimes goes away after changing pages.
- Maximized videos after that stick around after page navigation (youtube) can now be restored by clicking on the maximize/restore icon.

Version 1.1.1
- Reduce footprint by using minified jquery.
- Update to the latest jquery.important plugin.

Version 1.1
- Add support for HTML5 

拡張機能の基本情報

名前 Maximize Flash Maximize Flash
ID chihjmmmhbapnhemoopibkekbojilhge
公式URL https://chromewebstore.google.com/detail/maximize-flash/chihjmmmhbapnhemoopibkekbojilhge
説明 Make a flash video use as much screen size as the tab it's in and the aspect ratio allows, without causing the video to reload.
ファイルサイズ 71.66 KB
インストール数 4,891
現在のバージョン 1.3
最終更新日 2014-04-24
公開日 2014-04-24
評価 4.12/5 合計 112 レビュー
開発者 Scott Glajch
支払い方法 free
拡張機能のウェブサイト https://github.com/glajchs/maximize-flash-chrome
ヘルプページのURL https://github.com/glajchs/maximize-flash-chrome/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Maximize Flash",
    "version": "1.3",
    "description": "Make a flash video use as much screen size as the tab it's in and the aspect ratio allows, without causing the video to reload.",
    "author": "Scott Glajch",
    "background": {
        "scripts": [
            "lodash.min.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-1.11.0.min.js",
                "jquery.important.js",
                "lodash.min.js",
                "maximize_flash.js"
            ],
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "page_action": {
        "default_icon": "maximizeFlash.png",
        "default_title": "Maximize Flash"
    },
    "permissions": [
        "tabs"
    ]
}