UIMS Attendance Tracker

Helps you calculate how much you're away from achieving a perfect attendance.

Τι είναι το UIMS Attendance Tracker;

Το UIMS Attendance Tracker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Aryan Jasala, και η κύρια λειτουργία του είναι "Helps you calculate how much you're away from achieving a perfect attendance.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης UIMS Attendance Tracker

Λήψη αρχείων επέκτασης UIMS Attendance Tracker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Ever considered calculating how much classes you are away from 75% (to save your life) or 90% (to achieve that 2 marks :P ) by opening your CUIMS attendance and using a pen/paper and calculator everyday? Too much hassle isn't it?

Well we can simplify your work just by adding all that necessary information to your account automatically.
This extension would automatically create columns with necessary information every time you load the CUIMS attendance page and make the necessary information easy to understand.
* Also added to show Overall Attendance on attendance page.


Privacy Policy.
- The UIMS Attendance Tracker never logs in any of your password.
- The UIMS Attendance Tracker may save user data for analytics purpose.
- The UIMS Attendance Tracker never interferes with the real attendance of the student.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα UIMS Attendance Tracker UIMS Attendance Tracker
ID mcmacpjeheadllinnoljglkemmkdnang
Επίσημο URL https://chromewebstore.google.com/detail/uims-attendance-tracker/mcmacpjeheadllinnoljglkemmkdnang
Περιγραφή Helps you calculate how much you're away from achieving a perfect attendance.
Μέγεθος Αρχείου 152 KB
Αριθμός Εγκαταστάσεων 266
Τρέχουσα Έκδοση 1.0.2
Τελευταία Ενημέρωση 2020-09-08
Ημερομηνία Δημοσίευσης 2020-09-05
Αξιολόγηση 5.00/5 Συνολικά 15 Αξιολογήσεις
Προγραμματιστής Aryan Jasala
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "UIMS Attendance Tracker",
    "version": "1.0.2",
    "manifest_version": 2,
    "description": "Helps you calculate how much you're away from achieving a perfect attendance.",
    "icons": {
        "16": "img\/16.png",
        "32": "img\/32.png",
        "48": "img\/48.png",
        "128": "img\/128.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "browser_action": {
        "default_icon": {
            "19": "img\/16.png",
            "38": "img\/48.png"
        },
        "default_title": "UIMS Attendance Tracker",
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/uims.cuchd.in\/*",
                "*:\/\/www.uims.cuchd.in\/*"
            ],
            "js": [
                "assets\/jquery.js",
                "assets\/crypto.js",
                "assets\/main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "assets\/crypto.js",
            "assets\/background.js"
        ]
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/uims.cuchd.in\/uims\/*"
        ]
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}