Furball

The ultimate Scratch experience.

O que é Furball?

Furball é uma extensão do Chrome desenvolvida por Ian Morrill, e sua principal característica é "The ultimate Scratch experience.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Furball

Baixe arquivos de extensão Furball no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        The Ultimate Scratch (https://scratch.mit.edu) Experience

### Bring It Back! ###
Brings back the Discuss and Wiki buttons to the navbar (but only if you want to).

### Easiest Extension Experience ###
Let anyone with Furball install your project's experimental extensions in a flash with the Furball project extension.

### New Navbars, New Navbars Everywhere ###
Experience the new navbar everywhere (even on the Wiki)!

### Scratch Has Never Been So Gorgeous ###
With style enhancements everywhere, you will wonder how you ever found plain Scratch appealing.

### Flash Is Dead, Long Live HTML5 ###
With the Adobe Flash "end of life" coming up, be ready with the ablility to switch between the Scratch Flash player and the amazing HTML5 Phosphorus player by Nathan Dinsmore. 

Scratch is developed by the Lifelong Kindergarten Group at the MIT Media Lab. See https://scratch.mit.edu/.                    

Informações Básicas da Extensão

Nome Furball Furball
ID okeennfbdbebolgjgokolfdgnjkaikla
URL Oficial https://chromewebstore.google.com/detail/furball/okeennfbdbebolgjgokolfdgnjkaikla
Descrição The ultimate Scratch experience.
Tamanho do Arquivo 63.21 KB
Contagem de Instalações 960
Versão Atual 1.8
Última Atualização 2018-06-20
Data de Publicação 2018-06-20
Classificação 4.00/5 Total de 17 Avaliações
Desenvolvedor Ian Morrill
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/iwotastic/furball#furball
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Furball",
    "description": "The ultimate Scratch experience.",
    "version": "1.8",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.scratch.mit.edu\/*"
            ],
            "js": [
                "injected.js"
            ],
            "css": [
                "injected.css"
            ]
        }
    ],
    "icons": {
        "128": "icon128x128.png"
    },
    "permissions": [
        "storage",
        "alarms",
        "notifications"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "64": "icon64x64.png"
        },
        "default_title": "Furball - Check Messages",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "web_accessible_resources": [
        "MaterialIcons-Regular.woff2"
    ]
}