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 |
电子邮箱 | [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" ] } } |