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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" ] } } |