Mike's Got Style
An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website
Qu'est-ce que Mike's Got Style ?
Mike's Got Style est une extension Chrome développée par https://leviv.github.io, et sa fonction principale est "An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Mike's Got Style
Téléchargez les fichiers d'extension Mike's Got Style au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website
Informations de Base sur l'Extension
Nom | |
ID | bpfphblljclepkkgcemfhckcebchiled |
URL Officiel | https://chrome.google.com/webstore/detail/bpfphblljclepkkgcemfhckcebchiled |
Description | An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website |
Taille du Fichier | 208 KB |
Nombre d'Installations | 77 |
Version Actuelle | 2.1 |
Dernière Mise à Jour | 2018-01-15 |
Date de Publication | 2018-01-15 |
Évaluation | 5.00/5 Total 6 Évaluations |
Développeur | https://leviv.github.io |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |