ScratchExt

Adds a button to the Scratch website that installs ScratchExt.

ScratchExt là gì?

ScratchExt là một tiện ích mở rộng Chrome được phát triển bởi GrannyCookies, và tính năng chính của nó là "Adds a button to the Scratch website that installs ScratchExt.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ScratchExt

Tải xuống các tệp mở rộng ScratchExt dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ScratchExt ScratchExt
ID peilkhpoaiamhgcnagmklekjgmbjjjko
URL Chính Thức https://chrome.google.com/webstore/detail/scratchext/peilkhpoaiamhgcnagmklekjgmbjjjko
Mô tả Adds a button to the Scratch website that installs ScratchExt.
Kích Thước Tệp 71.05 KB
Số Lần Cài Đặt 253
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2014-12-07
Ngày Phát Hành 2014-12-07
Đánh Giá 4.17/5 Tổng số 6 Đánh Giá
Nhà Phát Triển GrannyCookies
Loại Thanh Toán free
Trang Web Mở Rộng http://scratch.mit.edu
URL Trang Trợ Giúp http://stefanbates.com/bookmarklet.html
Ngôn Ngữ Được Hỗ Trợ 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"
}