NoPlugin

Play legacy media in modern browsers without plugins.

NoPlugin क्या है?

NoPlugin Corbin Davenport द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Play legacy media in modern browsers without plugins."।

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

screenshot
screenshot

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

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

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

                        NoPlugin is the missing compatibility layer for modern web browers, allowing you to view most legacy content designed for browser plugins like Adobe Flash, QuickTime, and Windows Media Player. All browsers have phrased out the use of browser plugins, due to performance and security problems, so NoPlugin was created to maintain some compatibility with outdated/archived sites.

NoPlugin searches webpages for embedded plugin objects and converts them into native player elements, wherever possible. If the content can't be played in-browser (e.g. most Flash embeds), NoPlugin will help you download the file and play it in a separate application.

NoPlugin is open source under the GPL license. Its code is available here:
https://github.com/corbindavenport/noplugin                    

एक्सटेंशन की मूल जानकारी

नाम NoPlugin NoPlugin
ID llpahfhchhlfdigfpeimeagojnkgeice
आधिकारिक URL https://chromewebstore.google.com/detail/noplugin/llpahfhchhlfdigfpeimeagojnkgeice
विवरण Play legacy media in modern browsers without plugins.
फ़ाइल का आकार 123 KB
स्थापना संख्या 25,474
वर्तमान संस्करण 7.1
अंतिम अपडेट 2021-11-14
प्रकाशन तिथि 2020-02-04
रेटिंग 3.06/5 कुल 89 रेटिंग्स
डेवलपर Corbin Davenport
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/corbindavenport/noplugin/
सहायता पृष्ठ URL https://github.com/corbindavenport/noplugin/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NoPlugin",
    "version": "7.1",
    "author": "Corbin Davenport",
    "description": "Play legacy media in modern browsers without plugins.",
    "homepage_url": "https:\/\/github.com\/corbindavenport\/noplugin",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "downloads",
        "storage",
        "contextMenus",
        "tabs"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "web_accessible_resources": [
        "img\/*",
        "bugreport.html",
        "media-info.html",
        "playlist-viewer.html"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/noplugin.css"
            ],
            "js": [
                "js\/purify.js",
                "js\/blocklist.js",
                "js\/popper.min.js",
                "js\/tippy-bundle.umd.min.js",
                "js\/noplugin.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "http:\/\/*\/*noplugin_compat=true*",
                "https:\/\/*\/*noplugin_compat=true*"
            ],
            "js": [
                "js\/noplugin-compat.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    }
}