ProgTest Themes
Theme manager for ProgTest
什么是ProgTest Themes?
ProgTest Themes是由progtest-themes开发的Chrome扩展程序,该扩展的主要功能是“Theme manager for ProgTest”。
扩展截图
下载ProgTest Themes扩展crx文件
下载ProgTest Themes扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This is theme manager for Progtest.
Not only does it change the overall design of Progtest, but it also adds useful features such as syntax highlighting or notifications. 扩展基本信息
| 名称 | |
| ID | eoofjghfpdplnjhbfflfnfogdjnedgjf |
| 官方URL | https://chromewebstore.google.com/detail/progtest-themes/eoofjghfpdplnjhbfflfnfogdjnedgjf |
| 简介 | Theme manager for ProgTest |
| 文件大小 | 470 KB |
| 安装次数 | 373 |
| 当前版本 | 1.2.0 |
| 更新时间 | 2023-10-23 |
| 上架时间 | 2020-04-17 |
| 评分 | 5.00/5 共19次评分 |
| 开发者 | progtest-themes |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/keombre/progtest-theme |
| 帮助页面URL | https://github.com/keombre/progtest-theme/issues |
| 隐私政策页面URL | https://github.com/keombre/progtest-theme/blob/stable/privacy_policy.md |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "ProgTest Themes",
"version": "1.2.0",
"description": "Theme manager for ProgTest",
"manifest_version": 3,
"content_scripts": [
{
"run_at": "document_start",
"js": [
"content\/start.js",
"content\/highlightjs\/highlight.min.js"
],
"css": [
"themes\/loading\/on.css"
],
"matches": [
"https:\/\/progtest.fit.cvut.cz\/*"
],
"all_frames": true
},
{
"run_at": "document_end",
"js": [
"content\/end.js"
],
"matches": [
"https:\/\/progtest.fit.cvut.cz\/*"
],
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"content\/loader.js"
],
"matches": [
"https:\/\/progtest.fit.cvut.cz\/*"
]
},
{
"resources": [
"themes\/*"
],
"matches": [
"https:\/\/progtest.fit.cvut.cz\/*"
]
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"tabs"
],
"host_permissions": [
"https:\/\/progtest.fit.cvut.cz\/*",
"https:\/\/courses.fit.cvut.cz\/data\/courses-all.json"
],
"action": {
"default_title": "",
"default_icon": "icon.png",
"default_popup": "settings\/index.html"
},
"icons": {
"128": "icon.png"
}
} | |