Aspen Automator
This extension automates annoying parts of aspen
Aspen Automatorとは何ですか?
Aspen Automatorはhttps://tomhinkle.netによって開発されたChromeの拡張機能で、その主な機能は「This extension automates annoying parts of aspen」です。
拡張機能のスクリーンショット
Aspen Automator拡張機能のCRXファイルをダウンロード
Aspen Automator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [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" ] } } |