Aspen Automator

This extension automates annoying parts of aspen

Was ist Aspen Automator?

Aspen Automator ist eine Chrome-Erweiterung, die von https://tomhinkle.net entwickelt wurde, und ihr Hauptmerkmal ist "This extension automates annoying parts of aspen".

Erweiterungsscreenshots

screenshot

Aspen Automator-Erweiterungs-CRX-Datei herunterladen

Laden Sie Aspen Automator-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

                        Chrome extension to add import functionality to Aspen Follet gradebook software through browser automation. You can import grades from a CSV, from a google sheet (directly), or from google classroom (directly).                    

Grundlegende Informationen zur Erweiterung

Name Aspen Automator Aspen Automator
ID mbmknocbkogeikmaclaehonbodmkcoll
Offizielle URL https://chromewebstore.google.com/detail/aspen-automator/mbmknocbkogeikmaclaehonbodmkcoll
Beschreibung This extension automates annoying parts of aspen
Dateigröße 4.58 MB
Installationsanzahl 97
Aktuelle Version 1.2
Letztes Update 2021-10-11
Veröffentlichungsdatum 2020-04-17
Entwickler https://tomhinkle.net
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.tomhinkle.net/proj/aspen-automator
Hilfeseite URL https://www.tomhinkle.net/proj/aspen-automator
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Aspen Automator",
    "description": "This extension automates annoying parts of aspen",
    "version": "1.2",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "https:\/\/ajax.googleapis.com\/",
        "identity",
        "storage",
        "https:\/\/accounts.google.com\/o\/oauth2\/token",
        "https:\/\/accounts.google.com\/",
        "https:\/\/script.google.com\/",
        "https:\/\/docs.google.com\/spreadsheets\/",
        "https:\/\/fonts.googleapis.com\/"
    ],
    "oauth2": {
        "client_id": "542812885233-7h22peq3sf99gt2rqeibkjt5741nck8g.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/classroom.courses.readonly https:\/\/www.googleapis.com\/auth\/classroom.coursework.me.readonly https:\/\/www.googleapis.com\/auth\/classroom.coursework.students.readonly https:\/\/www.googleapis.com\/auth\/classroom.profile.emails"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.myfollett.com\/*",
                "https:\/\/*\/aspen\/*"
            ],
            "css": [
                "aspen.css"
            ],
            "js": [
                "jquery.js",
                "jquery.csv.min.js",
                "globals.js",
                "delayedDoer.js",
                "aspen.js"
            ],
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'",
    "background": {
        "scripts": [
            "globals.js",
            "papaparse.min.js",
            "background.js",
            "classroom_loader.js",
            "base.js"
        ]
    }
}