Furball

The ultimate Scratch experience.

Furballとは何ですか?

FurballはIan Morrillによって開発されたChromeの拡張機能で、その主な機能は「The ultimate Scratch experience.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Furball拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    ]
}