ProgTest Themes
Theme manager for ProgTest
ProgTest Themes क्या है?
ProgTest Themes progtest-themes द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Theme manager for ProgTest"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ProgTest Themes एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ 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" } } |