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
官方網址 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"
    ]
}