ScratchExt
Adds a button to the Scratch website that installs ScratchExt.
ScratchExt क्या है?
ScratchExt GrannyCookies द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a button to the Scratch website that installs ScratchExt."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ScratchExt एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension adds 2 buttons to the Scratch website that install ScratchExt. One is in the navbar, and the other is in the editor near the file button. They are both red so you should see them xP Designed with this custom navigation bar: https://userstyles.org/styles/107407/scratch-navbar-changes This eleminates the need to click the bookmarklet. Extension made by GrannyCookies (Alex Bates) ScratchExt is a collab between GrannyCookies, thistleeverfreen, and Yoda3D.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | peilkhpoaiamhgcnagmklekjgmbjjjko |
आधिकारिक URL | https://chrome.google.com/webstore/detail/scratchext/peilkhpoaiamhgcnagmklekjgmbjjjko |
विवरण | Adds a button to the Scratch website that installs ScratchExt. |
फ़ाइल का आकार | 71.05 KB |
स्थापना संख्या | 253 |
वर्तमान संस्करण | 1.2 |
अंतिम अपडेट | 2014-12-07 |
प्रकाशन तिथि | 2014-12-07 |
रेटिंग | 4.17/5 कुल 6 रेटिंग्स |
डेवलपर | GrannyCookies |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://scratch.mit.edu |
सहायता पृष्ठ URL | http://stefanbates.com/bookmarklet.html |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ScratchExt", "version": "1.2", "description": "Adds a button to the Scratch website that installs ScratchExt.", "icons": { "128": "logo.png" }, "content_scripts": [ { "matches": [ "http:\/\/scratch.mit.edu\/*" ], "js": [ "script.js" ], "run_at": "document_end" } ], "permissions": [ "tabs", "http:\/\/scratch.mit.edu\/*" ], "manifest_version": 2, "content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self'; connect-src http:\/\/scratch.mit.edu; img-src http:\/\/scratch.mit.edu" } |