Scratch Editor Messages

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

什麼是Scratch Editor Messages?

Scratch Editor Messages是由GrannyCookies開發的Chrome擴展程式,該擴展的主要功能是“Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.”。

擴展截圖

screenshot

下載Scratch Editor Messages擴展crx文件

下載Scratch Editor Messages擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Scratch Editor Messages Scratch Editor Messages
ID keimlfjkekbehbegbnojedobedfenbbf
官方網址 https://chrome.google.com/webstore/detail/scratch-editor-messages/keimlfjkekbehbegbnojedobedfenbbf
簡介 Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.
檔案大小 38.51 KB
安裝次數 236
目前版本 1.0
更新時間 2014-12-27
上架時間 2014-12-27
評分 5.00/5 共 2 次評分
開發者 GrannyCookies
付費類型 free
擴展官網 http://scratch.mit.edu
支援的語言 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"
}