Ninova Beautifier

Modern Design for Ninova

Cos'è Ninova Beautifier?

Ninova Beautifier è un'estensione di Chrome sviluppata da cenk ergen, e la sua funzione principale è "Modern Design for Ninova".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Ninova Beautifier

Scarica i file di estensione Ninova Beautifier in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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/                    

Informazioni di Base sull'Estensione

Nome Ninova Beautifier Ninova Beautifier
ID hnlpdbepdicjbpfmopjelbnlcenobklo
URL Ufficiale https://chromewebstore.google.com/detail/ninova-beautifier/hnlpdbepdicjbpfmopjelbnlcenobklo
Descrizione Modern Design for Ninova
Dimensione del File 22.36 KB
Conteggio Installazioni 279
Versione Corrente 1.4.4
Ultimo Aggiornamento 2021-03-20
Data di Pubblicazione 2021-01-24
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore cenk ergen
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/Cenngo/Ninova-Beautifier/issues
Lingue Supportate 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"
    ]
}