Scratch Editor Messages

Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.

Scratch Editor Messages là gì?

Scratch Editor Messages 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 messages counter to the scratch.mit.edu editor. It's helpful, really.".

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

screenshot

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

Tải xuống các tệp mở rộng Scratch Editor Messages 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 a unobtrusive button to the Scratch Editor.
It will automatically change itself to the amount of messages you currently have.

(Also, the button acts as a single-click way to get to the messages page)

Made by Alex Bates AKA GrannyCookies                    

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

Tên Scratch Editor Messages Scratch Editor Messages
ID keimlfjkekbehbegbnojedobedfenbbf
URL Chính Thức https://chrome.google.com/webstore/detail/scratch-editor-messages/keimlfjkekbehbegbnojedobedfenbbf
Mô tả Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.
Kích Thước Tệp 38.51 KB
Số Lần Cài Đặt 236
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2014-12-27
Ngày Phát Hành 2014-12-27
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển GrannyCookies
Loại Thanh Toán free
Trang Web Mở Rộng http://scratch.mit.edu
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scratch Editor Messages",
    "version": "1.0",
    "description": "Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.",
    "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"
}