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"
}