ScratchExt
Adds a button to the Scratch website that installs ScratchExt.
Τι είναι το ScratchExt;
Το ScratchExt είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον GrannyCookies, και η κύρια λειτουργία του είναι "Adds a button to the Scratch website that installs ScratchExt.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης ScratchExt
Λήψη αρχείων επέκτασης ScratchExt σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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" } |