NoPlugin
Play legacy media in modern browsers without plugins.
NoPluginとは何ですか?
NoPluginはCorbin Davenportによって開発されたChromeの拡張機能で、その主な機能は「Play legacy media in modern browsers without plugins.」です。
拡張機能のスクリーンショット
NoPlugin拡張機能のCRXファイルをダウンロード
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
拡張機能の基本情報
名前 | |
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 |
Eメール | [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" } } |