Scratch Editor Messages

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

ما هو Scratch Editor Messages؟

Scratch Editor Messages هو إضافة Chrome تم تطويرها بواسطة GrannyCookies، والميزة الرئيسية لها هي "Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Scratch Editor Messages

قم بتنزيل ملفات الامتداد Scratch Editor Messages بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان URL الرسمي 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"
}