Scratch Editor Messages

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

Scratch Editor Messages क्या है?

Scratch Editor Messages GrannyCookies द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a messages counter to the scratch.mit.edu editor. It's helpful, really."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Scratch Editor Messages एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
}