Ninova Beautifier

Modern Design for Ninova

Qu'est-ce que Ninova Beautifier ?

Ninova Beautifier est une extension Chrome développée par cenk ergen, et sa fonction principale est "Modern Design for Ninova".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Ninova Beautifier

Téléchargez les fichiers d'extension Ninova Beautifier au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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/                    

Informations de Base sur l'Extension

Nom Ninova Beautifier Ninova Beautifier
ID hnlpdbepdicjbpfmopjelbnlcenobklo
URL Officiel https://chromewebstore.google.com/detail/ninova-beautifier/hnlpdbepdicjbpfmopjelbnlcenobklo
Description Modern Design for Ninova
Taille du Fichier 22.36 KB
Nombre d'Installations 279
Version Actuelle 1.4.4
Dernière Mise à Jour 2021-03-20
Date de Publication 2021-01-24
Évaluation 5.00/5 Total 4 Évaluations
Développeur cenk ergen
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://github.com/Cenngo/Ninova-Beautifier/issues
Langues Prises en Charge 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"
    ]
}