ORIOKS tweaker

Модификация для ОРИОКСа. Правильное отображение баллов, интеграция расписания занятий и кастомизация!

What is ORIOKS tweaker?

ORIOKS tweaker is a Chrome extension developed by kanelen335, and its main feature is "Модификация для ОРИОКСа. Правильное отображение баллов, интеграция расписания занятий и кастомизация!".

Extension Screenshots

screenshot
screenshot
screenshot

Download ORIOKS tweaker Extension CRX File

Download ORIOKS tweaker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Описание проекта и функций:
https://github.com/KyuGG/orioks_tweaker#readme

Список обновлений и изменений (релизы/патчноуты):
https://github.com/KyuGG/orioks_tweaker/releases                    

Extension Basic Information

Name ORIOKS tweaker ORIOKS tweaker
ID efgdenjhcmladhmbjcmmeobggibfogep
Official URL https://chromewebstore.google.com/detail/orioks-tweaker/efgdenjhcmladhmbjcmmeobggibfogep
Description Модификация для ОРИОКСа. Правильное отображение баллов, интеграция расписания занятий и кастомизация!
File Size 1.04 MB
Installation Count 48
Current Version 2.0
Last Updated 2023-08-30
Publish Date 2022-04-28
Rating 5.00/5 Total 4 Ratings
Developer kanelen335
Email [email protected]
Payment Type free
Extension Website https://github.com/KyuGG/orioks_tweaker
Supported Languages ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ORIOKS tweaker",
    "version": "2.0",
    "description": "\u041c\u043e\u0434\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f \u0434\u043b\u044f \u041e\u0420\u0418\u041e\u041a\u0421\u0430. \u041f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e\u0435 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0431\u0430\u043b\u043b\u043e\u0432, \u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f \u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u044f \u0437\u0430\u043d\u044f\u0442\u0438\u0439 \u0438 \u043a\u0430\u0441\u0442\u043e\u043c\u0438\u0437\u0430\u0446\u0438\u044f!",
    "icons": {
        "128": "assets\/logo.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/orioks.miet.ru\/*"
            ],
            "exclude_matches": [
                "https:\/\/orioks.miet.ru\/moodle*",
                "https:\/\/orioks.miet.ru\/user\/login",
                "https:\/\/orioks.miet.ru\/manuals\/*",
                "https:\/\/orioks.miet.ru\/storage\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "styles\/default.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/orioks.miet.ru\/student\/student*"
            ],
            "css": [
                "styles\/fixScoreGrades.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/miet.ru\/schedule*"
            ],
            "js": [
                "scheduleFetch.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "tabs",
        "scripting",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/orioks.miet.ru\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*"
            ],
            "matches": [
                "https:\/\/orioks.miet.ru\/*"
            ]
        }
    ]
}