Ninova Beautifier
Modern Design for Ninova
Was ist Ninova Beautifier?
Ninova Beautifier ist eine Chrome-Erweiterung, die von cenk ergen entwickelt wurde, und ihr Hauptmerkmal ist "Modern Design for Ninova".
Erweiterungsscreenshots
Ninova Beautifier-Erweiterungs-CRX-Datei herunterladen
Laden Sie Ninova Beautifier-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
A simple CSS injector for ITU's Ninova
- Create themes that are fully customizeable
- Unlock "right-click" on Zoom recording pages
- Show lesson names alongside the lesson codes
gh: https://github.com/Cenngo/Ninova-Beautifier/ Grundlegende Informationen zur Erweiterung
| Name | |
| ID | hnlpdbepdicjbpfmopjelbnlcenobklo |
| Offizielle URL | https://chromewebstore.google.com/detail/ninova-beautifier/hnlpdbepdicjbpfmopjelbnlcenobklo |
| Beschreibung | Modern Design for Ninova |
| Dateigröße | 22.36 KB |
| Installationsanzahl | 279 |
| Aktuelle Version | 1.4.4 |
| Letztes Update | 2021-03-20 |
| Veröffentlichungsdatum | 2021-01-24 |
| Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
| Entwickler | cenk ergen |
| [email protected] | |
| Zahlungsart | free |
| Hilfeseite URL | https://github.com/Cenngo/Ninova-Beautifier/issues |
| Unterstützte Sprachen | en,tr |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Ninova Beautifier",
"description": "Modern Design for Ninova",
"manifest_version": 2,
"author": "Cenk Ergen",
"default_locale": "en",
"version": "1.4.4",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"css": [
"style.css"
],
"js": [
"enums.js",
"style.js"
],
"matches": [
"https:\/\/ninova.itu.edu.tr\/*"
],
"match_about_blank": false,
"run_at": "document_start",
"all_frames": false
},
{
"matches": [
"https:\/\/ninova.itu.edu.tr\/Sinif\/*\/UzaktanEgitim"
],
"css": [
"uzaktanEgitim.css"
],
"run_at": "document_idle",
"match_about_blank": false,
"all_frames": false
},
{
"matches": [
"https:\/\/itu-edu-tr.zoom.us\/rec\/play\/*"
],
"js": [
"enums.js",
"zoom.js"
],
"run_at": "document_idle",
"all_frames": false,
"match_about_blank": false
}
],
"options_ui": {
"chrome_style": false,
"open_in_tab": true,
"page": "settings\/settings.html"
},
"permissions": [
"storage",
"contextMenus",
"unlimitedStorage"
],
"background": {
"persistent": false,
"scripts": [
"enums.js",
"background.js"
]
},
"offline_enabled": false,
"web_accessible_resources": [
"icons\/icon128.png",
"captions.js"
]
} | |