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"
    ]
}