"Missing Plug-in" Fix

A simple extension to fix error "missing plugin" when browsing flash content for Google Chrome.

Τι είναι το "Missing Plug-in" Fix;

Το "Missing Plug-in" Fix είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον TVT Studio, και η κύρια λειτουργία του είναι "A simple extension to fix error "missing plugin" when browsing flash content for Google Chrome.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης "Missing Plug-in" Fix

Λήψη αρχείων επέκτασης "Missing Plug-in" Fix σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        As of version 1, this extension only fix "Missing Plug-in" error on Zing MP3 website. For version 2, the extension can fix this error on any website containing flash content within  tag.

PLEASE READ:
Google Chrome has (had) a bug in which it does not render flash content when the  tag doesn't contain attribute type="application/x-shockwave-flash". This extension will use jQuery to add the needed attribute and reload the content, thus Chrome can display it.

It can not fix other errors not related to the lack of attribute "type" in  tag (like shockwave keeps crashing, etc...). 

Please show any specific links where you think this extension should works but it doesn't in the comments. A generic comments like "This extension doesn't work" can not help me to find out how to resolve your situation. Thanks in advance.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα "Missing Plug-in" Fix
ID plkplgmhfkkhokgkdkblfcnfeccpippe
Επίσημο URL https://chromewebstore.google.com/detail/missing-plug-in-fix/plkplgmhfkkhokgkdkblfcnfeccpippe
Περιγραφή A simple extension to fix error "missing plugin" when browsing flash content for Google Chrome.
Μέγεθος Αρχείου 99.67 KB
Αριθμός Εγκαταστάσεων 51,429
Τρέχουσα Έκδοση 2.1
Τελευταία Ενημέρωση 2013-09-21
Ημερομηνία Δημοσίευσης 2013-09-21
Αξιολόγηση 3.13/5 Συνολικά 661 Αξιολογήσεις
Προγραμματιστής TVT Studio
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en,vi
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "2.1",
    "manifest_version": 2,
    "description": "__MSG_extDesc__",
    "default_locale": "vi",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "js\/jquery-1.7.min.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "js\/flashfix.js"
            ],
            "run_at": "document_end"
        }
    ]
}