ORIOKS tweaker
Модификация для ОРИОКСа. Правильное отображение баллов, интеграция расписания занятий и кастомизация!
ORIOKS tweaker là gì?
ORIOKS tweaker là một tiện ích mở rộng Chrome được phát triển bởi kanelen335, và tính năng chính của nó là "Модификация для ОРИОКСа. Правильное отображение баллов, интеграция расписания занятий и кастомизация!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng ORIOKS tweaker
Tải xuống các tệp mở rộng ORIOKS tweaker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Описание проекта и функций: https://github.com/KyuGG/orioks_tweaker#readme Список обновлений и изменений (релизы/патчноуты): https://github.com/KyuGG/orioks_tweaker/releases
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | efgdenjhcmladhmbjcmmeobggibfogep |
URL Chính Thức | https://chromewebstore.google.com/detail/orioks-tweaker/efgdenjhcmladhmbjcmmeobggibfogep |
Mô tả | Модификация для ОРИОКСа. Правильное отображение баллов, интеграция расписания занятий и кастомизация! |
Kích Thước Tệp | 1.04 MB |
Số Lần Cài Đặt | 48 |
Phiên Bản Hiện Tại | 2.0 |
Cập Nhật Lần Cuối | 2023-08-30 |
Ngày Phát Hành | 2022-04-28 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | kanelen335 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/KyuGG/orioks_tweaker |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |