ProgTest Themes
Theme manager for ProgTest
What is ProgTest Themes?
ProgTest Themes is a Chrome extension developed by progtest-themes, and its main feature is "Theme manager for ProgTest".
Extension Screenshots
Download ProgTest Themes Extension CRX File
Download ProgTest Themes extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | eoofjghfpdplnjhbfflfnfogdjnedgjf |
Official URL | https://chromewebstore.google.com/detail/progtest-themes/eoofjghfpdplnjhbfflfnfogdjnedgjf |
Description | Theme manager for ProgTest |
File Size | 470 KB |
Installation Count | 373 |
Current Version | 1.2.0 |
Last Updated | 2023-10-23 |
Publish Date | 2020-04-17 |
Rating | 5.00/5 Total 19 Ratings |
Developer | progtest-themes |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/keombre/progtest-theme |
Help Page URL | https://github.com/keombre/progtest-theme/issues |
Privacy Policy Page URL | https://github.com/keombre/progtest-theme/blob/stable/privacy_policy.md |
Supported Languages | 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" } } |