Furball
The ultimate Scratch experience.
Furball란 무엇입니까?
Furball은(는) Ian Morrill에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The ultimate Scratch experience."입니다.
확장 프로그램 스크린샷
Furball 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The Ultimate Scratch (https://scratch.mit.edu) Experience ### Bring It Back! ### Brings back the Discuss and Wiki buttons to the navbar (but only if you want to). ### Easiest Extension Experience ### Let anyone with Furball install your project's experimental extensions in a flash with the Furball project extension. ### New Navbars, New Navbars Everywhere ### Experience the new navbar everywhere (even on the Wiki)! ### Scratch Has Never Been So Gorgeous ### With style enhancements everywhere, you will wonder how you ever found plain Scratch appealing. ### Flash Is Dead, Long Live HTML5 ### With the Adobe Flash "end of life" coming up, be ready with the ablility to switch between the Scratch Flash player and the amazing HTML5 Phosphorus player by Nathan Dinsmore. Scratch is developed by the Lifelong Kindergarten Group at the MIT Media Lab. See https://scratch.mit.edu/.
확장 프로그램 기본 정보
이름 | Furball |
ID | okeennfbdbebolgjgokolfdgnjkaikla |
공식 URL | https://chromewebstore.google.com/detail/furball/okeennfbdbebolgjgokolfdgnjkaikla |
설명 | The ultimate Scratch experience. |
파일 크기 | 63.21 KB |
설치 횟수 | 960 |
현재 버전 | 1.8 |
최근 업데이트 | 2018-06-20 |
출시 날짜 | 2018-06-20 |
평점 | 4.00/5 총 17 개의 평점 |
개발자 | Ian Morrill |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/iwotastic/furball#furball |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Furball", "description": "The ultimate Scratch experience.", "version": "1.8", "content_scripts": [ { "matches": [ "https:\/\/*.scratch.mit.edu\/*" ], "js": [ "injected.js" ], "css": [ "injected.css" ] } ], "icons": { "128": "icon128x128.png" }, "permissions": [ "storage", "alarms", "notifications" ], "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_icon": { "64": "icon64x64.png" }, "default_title": "Furball - Check Messages", "default_popup": "popup.html" }, "options_ui": { "page": "options.html", "chrome_style": true }, "web_accessible_resources": [ "MaterialIcons-Regular.woff2" ] } |