"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 TVT Studio द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple extension to fix error "missing plugin" when browsing flash content for Google Chrome."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में "Missing Plug-in" Fix एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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