UVM Blackboard Autofill NetID

Autofill NetID when logging into Blackboard

Was ist UVM Blackboard Autofill NetID?

UVM Blackboard Autofill NetID ist eine Chrome-Erweiterung, die von Sleek Panther entwickelt wurde, und ihr Hauptmerkmal ist "Autofill NetID when logging into Blackboard".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

UVM Blackboard Autofill NetID-Erweiterungs-CRX-Datei herunterladen

Laden Sie UVM Blackboard Autofill NetID-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Autofill your NetID when blackboard logging into Blackboard & Chrome doesn't remember it

Saves your NetID & syncs to your Google account so it's accessible on any Chrome browser you sign into                    

Grundlegende Informationen zur Erweiterung

Name UVM Blackboard Autofill NetID UVM Blackboard Autofill NetID
ID chaedfolkmpjklggofnbjkepacoeomje
Offizielle URL https://chromewebstore.google.com/detail/uvm-blackboard-autofill-n/chaedfolkmpjklggofnbjkepacoeomje
Beschreibung Autofill NetID when logging into Blackboard
Dateigröße 54.56 KB
Installationsanzahl 55
Aktuelle Version 1.0.1
Letztes Update 2023-11-01
Veröffentlichungsdatum 2020-04-09
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Sleek Panther
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/SleekPanther/uvm-blackboard-autofill-netid
Hilfeseite URL https://github.com/SleekPanther/uvm-blackboard-autofill-netid/issues
URL der Datenschutzrichtlinien-Seite https://github.com/SleekPanther/youtube-chronological-order/blob/master/privacy.md
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UVM Blackboard Autofill NetID",
    "description": "Autofill NetID when logging into Blackboard",
    "version": "1.0.1",
    "version_name": "1.0.1",
    "page_action": {
        "default_icon": "assets\/icons\/bb16.png",
        "default_title": "Save your NetID",
        "default_popup": "popup.html"
    },
    "permissions": [
        "declarativeContent",
        "activeTab",
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "lib\/jquery-min.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "",
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "icons": {
        "16": "assets\/icons\/bb16.png",
        "48": "assets\/icons\/bb48.png",
        "128": "assets\/icons\/bb128.png"
    }
}