ScratchExt
Adds a button to the Scratch website that installs ScratchExt.
Co to jest ScratchExt?
ScratchExt to rozszerzenie Chrome opracowane przez GrannyCookies, a jego główną funkcją jest „Adds a button to the Scratch website that installs ScratchExt.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia ScratchExt
Pobierz pliki rozszerzeń ScratchExt w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | peilkhpoaiamhgcnagmklekjgmbjjjko |
Oficjalny URL | https://chrome.google.com/webstore/detail/scratchext/peilkhpoaiamhgcnagmklekjgmbjjjko |
Opis | Adds a button to the Scratch website that installs ScratchExt. |
Rozmiar pliku | 71.05 KB |
Liczba instalacji | 253 |
Aktualna Wersja | 1.2 |
Ostatnia Aktualizacja | 2014-12-07 |
Data Publikacji | 2014-12-07 |
Ocena | 4.17/5 Łącznie 6 Oceny |
Deweloper | GrannyCookies |
Typ Płatności | free |
Strona Rozszerzenia | http://scratch.mit.edu |
Adres URL Strony Pomocy | http://stefanbates.com/bookmarklet.html |
Obsługiwane Języki | 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" } |