ProgTest Themes
Theme manager for ProgTest
ProgTest Themesคืออะไร?
ProgTest Themes เป็นส่วนขยายของ Chrome ที่พัฒนาโดย progtest-themes และคุณลักษณะหลักของมันคือ "Theme manager for ProgTest"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ProgTest Themes
ดาวน์โหลดไฟล์ส่วนขยาย 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" } } |