Ninova Beautifier
Modern Design for Ninova
Wat is Ninova Beautifier?
Ninova Beautifier is een Chrome-extensie ontwikkeld door cenk ergen, en de belangrijkste functie is "Modern Design for Ninova".
Extensie Screenshots
Download het CRX-bestand van de extensie Ninova Beautifier
Download Ninova Beautifier-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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/
Basisinformatie over de Extensie
Naam | Ninova Beautifier |
ID | hnlpdbepdicjbpfmopjelbnlcenobklo |
Officiële URL | https://chromewebstore.google.com/detail/ninova-beautifier/hnlpdbepdicjbpfmopjelbnlcenobklo |
Beschrijving | Modern Design for Ninova |
Bestandsgrootte | 22.36 KB |
Aantal Installaties | 279 |
Huidige Versie | 1.4.4 |
Laatst Bijgewerkt | 2021-03-20 |
Publicatiedatum | 2021-01-24 |
Beoordeling | 5.00/5 Totaal 4 Beoordelingen |
Ontwikkelaar | cenk ergen |
[email protected] | |
Betalingswijze | free |
Help Pagina-URL | https://github.com/Cenngo/Ninova-Beautifier/issues |
Ondersteunde Talen | 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" ] } |