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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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
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"
}