NoPlugin

Play legacy media in modern browsers without plugins.

Τι είναι το NoPlugin;

Το NoPlugin είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Corbin Davenport, και η κύρια λειτουργία του είναι "Play legacy media in modern browsers without plugins.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης NoPlugin

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

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

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