Mike's Got Style
An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website
Co to jest Mike's Got Style?
Mike's Got Style to rozszerzenie Chrome opracowane przez https://leviv.github.io, a jego główną funkcją jest „An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Mike's Got Style
Pobierz pliki rozszerzeń Mike's Got Style 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
An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | bpfphblljclepkkgcemfhckcebchiled |
Oficjalny URL | https://chrome.google.com/webstore/detail/bpfphblljclepkkgcemfhckcebchiled |
Opis | An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website |
Rozmiar pliku | 208 KB |
Liczba instalacji | 77 |
Aktualna Wersja | 2.1 |
Ostatnia Aktualizacja | 2018-01-15 |
Data Publikacji | 2018-01-15 |
Ocena | 5.00/5 Łącznie 6 Oceny |
Deweloper | https://leviv.github.io |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Mike's Got Style", "version": "2.1", "content_scripts": [ { "run_at": "document_start", "matches": [ "http:\/\/www.cs.utexas.edu\/~scottm\/*", "https:\/\/www.cs.utexas.edu\/~scottm\/*" ], "js": [ "jquery.js", "ui.js", "main.js" ], "css": [ ".\/assets\/css\/test.css" ] } ], "background": { "scripts": [ "jquery.js", "ui.js", "main.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "activeTab", "storage" ] } |