ScratchExt
Adds a button to the Scratch website that installs ScratchExt.
Vad är ScratchExt?
ScratchExt är en Chrome-tillägg utvecklad av GrannyCookies, och dess huvudfunktion är "Adds a button to the Scratch website that installs ScratchExt.".
Tilläggsskärmbilder
Ladda ner ScratchExt-förlängningens CRX-fil
Ladda ner ScratchExt-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | peilkhpoaiamhgcnagmklekjgmbjjjko |
Officiell webbadress | https://chrome.google.com/webstore/detail/scratchext/peilkhpoaiamhgcnagmklekjgmbjjjko |
Beskrivning | Adds a button to the Scratch website that installs ScratchExt. |
Filstorlek | 71.05 KB |
Antal Installationer | 253 |
Aktuell Version | 1.2 |
Senast Uppdaterad | 2014-12-07 |
Publiceringsdatum | 2014-12-07 |
Betyg | 4.17/5 Totalt 6 Betyg |
Utvecklare | GrannyCookies |
Betalningssätt | free |
Tilläggswebbplats | http://scratch.mit.edu |
Hjälpsida URL | http://stefanbates.com/bookmarklet.html |
Stödda Språk | 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" } |