Furball

The ultimate Scratch experience.

Что такое Furball?

Furball - это расширение Chrome, разработанное Ian Morrill, и его основная функция - "The ultimate Scratch experience.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Furball

Скачайте файлы расширений Furball в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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/.                    

Основная информация о расширении

Название Furball Furball
ID okeennfbdbebolgjgokolfdgnjkaikla
Официальный URL https://chromewebstore.google.com/detail/furball/okeennfbdbebolgjgokolfdgnjkaikla
Описание The ultimate Scratch experience.
Размер файла 63.21 KB
Количество установок 960
Текущая Версия 1.8
Последнее Обновление 2018-06-20
Дата публикации 2018-06-20
Рейтинг 4.00/5 Всего 17 оценок
Разработчик Ian Morrill
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/iwotastic/furball#furball
Поддерживаемые языки 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"
    ]
}