NoPlugin
Play legacy media in modern browsers without plugins.
Qu'est-ce que NoPlugin ?
NoPlugin est une extension Chrome développée par Corbin Davenport, et sa fonction principale est "Play legacy media in modern browsers without plugins.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension NoPlugin
Téléchargez les fichiers d'extension NoPlugin 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
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
Informations de Base sur l'Extension
Nom | |
ID | llpahfhchhlfdigfpeimeagojnkgeice |
URL Officiel | https://chromewebstore.google.com/detail/noplugin/llpahfhchhlfdigfpeimeagojnkgeice |
Description | Play legacy media in modern browsers without plugins. |
Taille du Fichier | 123 KB |
Nombre d'Installations | 25,474 |
Version Actuelle | 7.1 |
Dernière Mise à Jour | 2021-11-14 |
Date de Publication | 2020-02-04 |
Évaluation | 3.06/5 Total 89 Évaluations |
Développeur | Corbin Davenport |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/corbindavenport/noplugin/ |
URL de la Page d'Aide | https://github.com/corbindavenport/noplugin/issues |
Langues Prises en Charge | 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" } } |