Phosphorate
Simple extension to include an option on Scratch player pages to use the Phosphorus player.
Phosphorate란 무엇입니까?
Phosphorate은(는) thepeanutman98에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple extension to include an option on Scratch player pages to use the Phosphorus player."입니다.
확장 프로그램 스크린샷
Phosphorate 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is a simple extension that adds an switch on Scratch (https://scratch.mit.edu/) player pages (pages for projects, which are of the format https://scratch.mit.edu/projects/[project id]), such as https://scratch.mit.edu/projects/10000007/) that allows the use of the Phosphorus renderer (or other Scratch renderers) instead of the default Flash renderer. The source code is hosted on Github at https://github.com/thepeanutman98/Phosphorate If you are making a website and want it to load faster, try OptiPic. They automatically compress all the images on your website with an easy-to-use interface. Use the link https://optipic.io/en/?my_coupon=90j9PaUisXkMcWe3LCRKFjOfSXpC9Y1a or use the offer code 90j9PaUisXkMcWe3LCRKFjOfSXpC9Y1a at sign-in to get 5-10% off, and support further development of extensions like these! Note: Phosphorus can be found at https://phosphorus.github.com and was made by Nathan Dinsmore. Phosphorate was not developed by any of the developers of Phosphorus. Phosphorate simply uses the Phosphorus player. The same is true for the Sulfurous player.
확장 프로그램 기본 정보
이름 | Phosphorate |
ID | nipcpbcfojhiehanhhddkmfjdgjdfolg |
공식 URL | https://chromewebstore.google.com/detail/phosphorate/nipcpbcfojhiehanhhddkmfjdgjdfolg |
설명 | Simple extension to include an option on Scratch player pages to use the Phosphorus player. |
파일 크기 | 41.46 KB |
설치 횟수 | 152 |
현재 버전 | 1.1.2 |
최근 업데이트 | 2018-03-19 |
출시 날짜 | 2018-03-19 |
평점 | 2.43/5 총 7 개의 평점 |
개발자 | thepeanutman98 |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/thepeanutman98/Phosphorate |
도움말 페이지 URL | https://github.com/thepeanutman98/Phosphorate/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Phosphorate", "short_name": "Phosphorate", "version": "1.1.2", "icons": { "16": "favicon16.png", "24": "favicon24.png", "32": "favicon32.png", "48": "favicon48.png", "64": "favicon64.png", "128": "favicon128.png" }, "permissions": [ "storage" ], "minimum_chrome_version": "40", "description": "Simple extension to include an option on Scratch player pages to use the Phosphorus player.", "content_scripts": [ { "matches": [ "*:\/\/scratch.mit.edu\/projects\/*" ], "exclude_matches": [ "*:\/\/scratch.mit.edu\/projects\/*#fullscreen", "*:\/\/scratch.mit.edu\/projects\/*#editor", "*:\/\/scratch.mit.edu\/projects\/*\/remixtree\/", "*:\/\/scratch.mit.edu\/projects\/*\/remixes\/", "*:\/\/scratch.mit.edu\/projects\/*\/studios\/" ], "js": [ "content.js" ] } ], "options_ui": { "page": "options.html", "chrome_style": true } } |