ScratchExt

Adds a button to the Scratch website that installs ScratchExt.

ScratchExt란 무엇입니까?

ScratchExt은(는) GrannyCookies에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a button to the Scratch website that installs ScratchExt."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

ScratchExt 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension adds 2 buttons to the Scratch website that install ScratchExt.
One is in the navbar, and the other is in the editor near the file button.
They are both red so you should see them xP

Designed with this custom navigation bar: https://userstyles.org/styles/107407/scratch-navbar-changes

This eleminates the need to click the bookmarklet.

Extension made by GrannyCookies (Alex Bates)
ScratchExt is a collab between GrannyCookies, thistleeverfreen, and Yoda3D.                    

확장 프로그램 기본 정보

이름 ScratchExt ScratchExt
ID peilkhpoaiamhgcnagmklekjgmbjjjko
공식 URL https://chrome.google.com/webstore/detail/scratchext/peilkhpoaiamhgcnagmklekjgmbjjjko
설명 Adds a button to the Scratch website that installs ScratchExt.
파일 크기 71.05 KB
설치 횟수 253
현재 버전 1.2
최근 업데이트 2014-12-07
출시 날짜 2014-12-07
평점 4.17/5 총 6 개의 평점
개발자 GrannyCookies
결제 유형 free
확장 프로그램 웹 사이트 http://scratch.mit.edu
도움말 페이지 URL http://stefanbates.com/bookmarklet.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ScratchExt",
    "version": "1.2",
    "description": "Adds a button to the Scratch website that installs ScratchExt.",
    "icons": {
        "128": "logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/scratch.mit.edu\/*"
            ],
            "js": [
                "script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/scratch.mit.edu\/*"
    ],
    "manifest_version": 2,
    "content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self'; connect-src http:\/\/scratch.mit.edu; img-src http:\/\/scratch.mit.edu"
}