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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}