Mike's Got Style
An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website
什么是Mike's Got Style?
Mike's Got Style是由https://leviv.github.io开发的Chrome扩展程序,该扩展的主要功能是“An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website”。
扩展截图
下载Mike's Got Style扩展crx文件
下载Mike's Got Style扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website
扩展基本信息
名称 | |
ID | bpfphblljclepkkgcemfhckcebchiled |
官方URL | https://chrome.google.com/webstore/detail/bpfphblljclepkkgcemfhckcebchiled |
简介 | An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website |
文件大小 | 208 KB |
安装次数 | 77 |
当前版本 | 2.1 |
更新时间 | 2018-01-15 |
上架时间 | 2018-01-15 |
评分 | 5.00/5 共6次评分 |
开发者 | https://leviv.github.io |
付费类型 | free |
支持的语言 | 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" ] } |