Scratch Editor Messages

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

Apa itu Scratch Editor Messages?

Scratch Editor Messages adalah ekstensi Chrome yang dikembangkan oleh GrannyCookies, dan fitur utamanya adalah "Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Scratch Editor Messages

Unduh file ekstensi Scratch Editor Messages dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Scratch Editor Messages Scratch Editor Messages
ID keimlfjkekbehbegbnojedobedfenbbf
URL Resmi https://chrome.google.com/webstore/detail/scratch-editor-messages/keimlfjkekbehbegbnojedobedfenbbf
Deskripsi Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.
Ukuran File 38.51 KB
Jumlah Instalasi 236
Versi Saat Ini 1.0
Terakhir Diperbarui 2014-12-27
Tanggal Publikasi 2014-12-27
Penilaian 5.00/5 Total 2 Penilaian
Pengembang GrannyCookies
Tipe Pembayaran free
Situs Ekstensi http://scratch.mit.edu
Bahasa yang Didukung 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"
}