Scratch Project Profile Pictures
Adds a profile picture of the user who shared the project to scratch project pages.
Co to jest Scratch Project Profile Pictures?
Scratch Project Profile Pictures to rozszerzenie Chrome opracowane przez GrannyCookies, a jego główną funkcją jest „Adds a profile picture of the user who shared the project to scratch project pages.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Scratch Project Profile Pictures
Pobierz pliki rozszerzeń Scratch Project Profile Pictures 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
Simply put, this just puts the sharer's picture on project pages. That's it. Made by Alex Bates (aka GrannyCookies)
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | ckkjcabehicmjhgndgpobhjkeenihdbk |
Oficjalny URL | https://chrome.google.com/webstore/detail/scratch-project-profile-p/ckkjcabehicmjhgndgpobhjkeenihdbk |
Opis | Adds a profile picture of the user who shared the project to scratch project pages. |
Rozmiar pliku | 39.37 KB |
Liczba instalacji | 212 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2014-12-28 |
Data Publikacji | 2014-12-28 |
Ocena | 3.67/5 Łącznie 3 Oceny |
Deweloper | GrannyCookies |
Typ Płatności | free |
Strona Rozszerzenia | http://scratch.mit.edu |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Scratch Project Profile Pictures", "version": "1.0", "description": "Adds a profile picture of the user who shared the project to scratch project pages.", "icons": { "128": "logo.png" }, "content_scripts": [ { "matches": [ "http:\/\/scratch.mit.edu\/projects\/*" ], "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" } |