NoPlugin
Play legacy media in modern browsers without plugins.
NoPlugin란 무엇입니까?
NoPlugin은(는) Corbin Davenport에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Play legacy media in modern browsers without plugins."입니다.
확장 프로그램 스크린샷
NoPlugin 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
확장 프로그램 기본 정보
이름 | |
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" } } |