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 là gì?

Maximize Flash là một tiện ích mở rộng Chrome được phát triển bởi Scott Glajch, và tính năng chính của nó là "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.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Maximize Flash

Tải xuống các tệp mở rộng Maximize Flash dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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 

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Maximize Flash Maximize Flash
ID chihjmmmhbapnhemoopibkekbojilhge
URL Chính Thức https://chromewebstore.google.com/detail/maximize-flash/chihjmmmhbapnhemoopibkekbojilhge
Mô tả 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.
Kích Thước Tệp 71.66 KB
Số Lần Cài Đặt 4,891
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2014-04-24
Ngày Phát Hành 2014-04-24
Đánh Giá 4.12/5 Tổng số 112 Đánh Giá
Nhà Phát Triển Scott Glajch
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/glajchs/maximize-flash-chrome
URL Trang Trợ Giúp https://github.com/glajchs/maximize-flash-chrome/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}