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 |
官方網址 | 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" } } |