ExVTOP (Extended VTOP)

Easily see DA

ExVTOP (Extended VTOP)คืออะไร?

ExVTOP (Extended VTOP) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sudonims และคุณลักษณะหลักของมันคือ "Easily see DA"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ExVTOP (Extended VTOP)

ดาวน์โหลดไฟล์ส่วนขยาย ExVTOP (Extended VTOP) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This is a simple extension which would help the students of VIT to easily look for the deadlines of DA's and plan accordingly.

V4.2.0: Navbar shortcut menu fix. Thanks to https://github.com/Prathyush-KKK

V4.1.1: Bug Fix

V4.1.0: Updated with new VTOP API structure

V4.0.2: Updated with new VTOP button clicks

V4.0.1: Notification Bug Fix

V4.0.0: UI Upgrade
-> Major UI improvements. Thanks to https://github.com/whoanuragverma 

V3.0.0: Major Upgrade
-> Added support for VTOP Chennai.
-> Minor bug fixes.

V2.5.0: Major Upgrade
-> Extension now supports Firefox Browser
-> Rewrote OAuth2 web flow to support all chromium based browsers and Firefox
-> Added option to revoke Access Token (Can be done through extension dropdown => Sign Out)
-> Minor bug fixes

V2.0.0: Major Upgrade
-> Added new Google Calendar Sync (syncs DA dates with calendar) 
     feature. (Need to sign in through the dropdown before)
-> Better Exception handling
-> Minor Bug fixes

V1.5.0: Added a quick links option. Can be seen on top left of vtop.
V1.1.2: Patched with new VTOP changes
V1.1.0: Removed Unnecessary code. Added a pause button to pause extension working.

Note : 
1) Red means less than 2 days left to upload the DA ...xD
2) Advised to pause the extension use during exams as the extension disables the button momentarily until all DA dates are loaded.
3) Google Sign in is completely based on Google OAuth API. Neither password nor any personal information is being stored.


Privacy Policy:
https://exvtop.sudonims.tech/privacy

If any issues, you can create them here, 
https://github.com/sudonims/vtop-da-deadline/issues                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ ExVTOP (Extended VTOP) ExVTOP (Extended VTOP)
ID mmncmmodffimfglkgomlgbgpcgidkbij
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/exvtop-extended-vtop/mmncmmodffimfglkgomlgbgpcgidkbij
คำอธิบาย Easily see DA
ขนาดไฟล์ 18.51 KB
จำนวนการติดตั้ง 4,248
เวอร์ชันปัจจุบัน 4.2.0
อัปเดตครั้งล่าสุด 2022-10-30
วันที่เผยแพร่ 2020-08-18
คะแนน 4.58/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา sudonims
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://exvtop.sudonims.tech/
URL หน้าช่วยเหลือ https://github.com/sudonims/vtop-da-deadline/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ExVTOP (Extended VTOP)",
    "version": "4.2.0",
    "description": "Easily see DA",
    "content_scripts": [
        {
            "run_at": "document_start",
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/vtop.vit.ac.in\/vtop\/*",
                "https:\/\/vtopcc.vit.ac.in\/vtop\/*"
            ]
        }
    ],
    "permissions": [
        "webRequest",
        "tabs",
        "https:\/\/vtop.vit.ac.in\/vtop\/*",
        "https:\/\/vtopcc.vit.ac.in\/vtop\/*",
        "storage",
        "notifications",
        "identity",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "logo.png"
    }
}