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"
    ]
}