ScratchMoji
Brings Emojis to Scratch!
ScratchMoji란 무엇입니까?
ScratchMoji은(는) https://greenbayrules.github.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Brings Emojis to Scratch!"입니다.
확장 프로그램 스크린샷
ScratchMoji 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Bring your conversations to life with ScratchMoji! This extension replaces the current Scratch emojis for the more widely used Apple emojis. It also converts any emoticon (for example, ":D") into an emoji. Click the icon of this extension to view all the emojis you can comment. ScratchMoji is made by Sheshank Shankar (@PackersRuleGoPack) Thanks to @jokebookservice1 for parts of the code.
확장 프로그램 기본 정보
이름 | |
ID | mnbldfncnodnfpmhblecpfidlckiiiad |
공식 URL | https://chrome.google.com/webstore/detail/scratchmoji/mnbldfncnodnfpmhblecpfidlckiiiad |
설명 | Brings Emojis to Scratch! |
파일 크기 | 56.1 KB |
설치 횟수 | 1,050 |
현재 버전 | 1.1 |
최근 업데이트 | 2017-11-19 |
출시 날짜 | 2017-11-19 |
평점 | 3.42/5 총 26 개의 평점 |
개발자 | https://greenbayrules.github.io |
결제 유형 | free |
지원되는 언어 | en,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ScratchMoji", "short_name": "SM", "description": "Brings Emojis to Scratch!", "default_locale": "en", "content_scripts": [ { "matches": [ "https:\/\/scratch.mit.edu\/*" ], "css": [ "inject-styles.css" ], "js": [ "code.js" ], "run_at": "document_idle" } ], "version": "1.1", "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_popup": "popup.html", "default_icon": "icon.png" }, "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "permissions": [ "https:\/\/scratch.mit.edu\/*", "storage" ], "optional_permissions": [ "notifications" ] } |