ScratchExt

Adds a button to the Scratch website that installs ScratchExt.

Cos'è ScratchExt?

ScratchExt è un'estensione di Chrome sviluppata da GrannyCookies, e la sua funzione principale è "Adds a button to the Scratch website that installs ScratchExt.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione ScratchExt

Scarica i file di estensione ScratchExt in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension adds 2 buttons to the Scratch website that install ScratchExt.
One is in the navbar, and the other is in the editor near the file button.
They are both red so you should see them xP

Designed with this custom navigation bar: https://userstyles.org/styles/107407/scratch-navbar-changes

This eleminates the need to click the bookmarklet.

Extension made by GrannyCookies (Alex Bates)
ScratchExt is a collab between GrannyCookies, thistleeverfreen, and Yoda3D.                    

Informazioni di Base sull'Estensione

Nome ScratchExt ScratchExt
ID peilkhpoaiamhgcnagmklekjgmbjjjko
URL Ufficiale https://chrome.google.com/webstore/detail/scratchext/peilkhpoaiamhgcnagmklekjgmbjjjko
Descrizione Adds a button to the Scratch website that installs ScratchExt.
Dimensione del File 71.05 KB
Conteggio Installazioni 253
Versione Corrente 1.2
Ultimo Aggiornamento 2014-12-07
Data di Pubblicazione 2014-12-07
Valutazione 4.17/5 Totale 6 Valutazioni
Sviluppatore GrannyCookies
Tipo di Pagamento free
Sito Web dell'Estensione http://scratch.mit.edu
URL della Pagina di Aiuto http://stefanbates.com/bookmarklet.html
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ScratchExt",
    "version": "1.2",
    "description": "Adds a button to the Scratch website that installs ScratchExt.",
    "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"
}