Aspen Automator

This extension automates annoying parts of aspen

Aspen Automator क्या है?

Aspen Automator https://tomhinkle.net द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension automates annoying parts of aspen"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Aspen Automator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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).                    

एक्सटेंशन की मूल जानकारी

नाम Aspen Automator Aspen Automator
ID mbmknocbkogeikmaclaehonbodmkcoll
आधिकारिक URL https://chromewebstore.google.com/detail/aspen-automator/mbmknocbkogeikmaclaehonbodmkcoll
विवरण This extension automates annoying parts of aspen
फ़ाइल का आकार 4.58 MB
स्थापना संख्या 97
वर्तमान संस्करण 1.2
अंतिम अपडेट 2021-10-11
प्रकाशन तिथि 2020-04-17
डेवलपर https://tomhinkle.net
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.tomhinkle.net/proj/aspen-automator
सहायता पृष्ठ URL https://www.tomhinkle.net/proj/aspen-automator
समर्थित भाषाएँ 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"
        ]
    }
}