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.

Qu'est-ce que Maximize Flash ?

Maximize Flash est une extension Chrome développée par Scott Glajch, et sa fonction principale est "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.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Maximize Flash

Téléchargez les fichiers d'extension Maximize Flash au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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 

Informations de Base sur l'Extension

Nom Maximize Flash Maximize Flash
ID chihjmmmhbapnhemoopibkekbojilhge
URL Officiel https://chromewebstore.google.com/detail/maximize-flash/chihjmmmhbapnhemoopibkekbojilhge
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.
Taille du Fichier 71.66 KB
Nombre d'Installations 4,891
Version Actuelle 1.3
Dernière Mise à Jour 2014-04-24
Date de Publication 2014-04-24
Évaluation 4.12/5 Total 112 Évaluations
Développeur Scott Glajch
Type de Paiement free
Site Web de l'Extension https://github.com/glajchs/maximize-flash-chrome
URL de la Page d'Aide https://github.com/glajchs/maximize-flash-chrome/issues
Langues Prises en Charge 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"
    ]
}