Ninova Beautifier

Modern Design for Ninova

Ninova Beautifierคืออะไร?

Ninova Beautifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย cenk ergen และคุณลักษณะหลักของมันคือ "Modern Design for Ninova"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Ninova Beautifier

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}