ScratchExt

Adds a button to the Scratch website that installs ScratchExt.

Co je ScratchExt?

ScratchExt je rozšíření Chrome vyvinuté GrannyCookies, a jeho hlavní funkcí je „Adds a button to the Scratch website that installs ScratchExt.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření ScratchExt

Stáhněte si soubory rozšíření ScratchExt ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název ScratchExt ScratchExt
ID peilkhpoaiamhgcnagmklekjgmbjjjko
Oficiální URL https://chrome.google.com/webstore/detail/scratchext/peilkhpoaiamhgcnagmklekjgmbjjjko
Popis Adds a button to the Scratch website that installs ScratchExt.
Velikost souboru 71.05 KB
Počet instalací 253
Aktuální Verze 1.2
Poslední Aktualizace 2014-12-07
Datum Vydání 2014-12-07
Hodnocení 4.17/5 Celkem 6 Hodnocení
Vývojář GrannyCookies
Typ Platby free
Webové stránky Rozšíření http://scratch.mit.edu
URL Stránky Nápovědy http://stefanbates.com/bookmarklet.html
Podporované Jazyky 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"
}