Furball
The ultimate Scratch experience.
Furball क्या है?
Furball Ian Morrill द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The ultimate Scratch experience."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Furball एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" ] } |