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.

Apa itu Maximize Flash?

Maximize Flash adalah ekstensi Chrome yang dikembangkan oleh Scott Glajch, dan fitur utamanya adalah "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 Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Maximize Flash

Unduh file ekstensi Maximize Flash dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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 

Informasi Dasar Ekstensi

Nama Maximize Flash Maximize Flash
ID chihjmmmhbapnhemoopibkekbojilhge
URL Resmi https://chromewebstore.google.com/detail/maximize-flash/chihjmmmhbapnhemoopibkekbojilhge
Deskripsi 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.
Ukuran File 71.66 KB
Jumlah Instalasi 4,891
Versi Saat Ini 1.3
Terakhir Diperbarui 2014-04-24
Tanggal Publikasi 2014-04-24
Penilaian 4.12/5 Total 112 Penilaian
Pengembang Scott Glajch
Tipe Pembayaran free
Situs Ekstensi https://github.com/glajchs/maximize-flash-chrome
URL Halaman Bantuan https://github.com/glajchs/maximize-flash-chrome/issues
Bahasa yang Didukung 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"
    ]
}