Ninova Beautifier

Modern Design for Ninova

什么是Ninova Beautifier?

Ninova Beautifier是由cenk ergen开发的Chrome扩展程序,该扩展的主要功能是“Modern Design for Ninova”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Ninova Beautifier扩展crx文件

下载Ninova Beautifier扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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/                    

扩展基本信息

名称 Ninova Beautifier Ninova Beautifier
ID hnlpdbepdicjbpfmopjelbnlcenobklo
官方URL https://chromewebstore.google.com/detail/ninova-beautifier/hnlpdbepdicjbpfmopjelbnlcenobklo
简介 Modern Design for Ninova
文件大小 22.36 KB
安装次数 279
当前版本 1.4.4
更新时间 2021-03-20
上架时间 2021-01-24
评分 5.00/5 共4次评分
开发者 cenk ergen
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/Cenngo/Ninova-Beautifier/issues
支持的语言 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"
    ]
}