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 |
官方網址 | 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" ] } |