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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | https://github.com/keombre/progtest-theme/issues |
عنوان صفحة سياسة الخصوصية | 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" } } |