Aeries.Net Web Import

This extension allows import of csv data into Aeries.Net

Aeries.Net Web Importคืออะไร?

Aeries.Net Web Import เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kjhinds และคุณลักษณะหลักของมันคือ "This extension allows import of csv data into Aeries.Net"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Aeries.Net Web Import

ดาวน์โหลดไฟล์ส่วนขยาย Aeries.Net Web Import ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Designed for teachers at ABC Unified to be able to import comma-separated or tab-separated lists of student names and scores into Aeries.NET.

You must create the assignments in Aeries.NET first, then use the icon to import scores.

Format for data should include a header to specify assignment numbers, either:
Last Name, First Name, Assignment #, Assignment #, ...

or 

Full Name, Assignment #, Assignment #, ...

or
 
Student Number, Assignment #, Assignment #, ...

The next lines should be a list of each student with the scores you want to import.

If using Student Number, you must use the 1-3 digit student number, not the student's permanent ID.  Permanent ID matching is planned, but Aeries.NET does not provide an easy way to match students up to their Permanent ID.

Updates in v1.9.9:
Improved name matching algorithm. Should be better at matching names of students who have multiple last and first names.

Updates in v1.9.8:
Fixed script error caused by conflict with certain other extensions.

Updates in v1.9.7:
Fixed last entry starting to get ignored by Aeries.

Updates in v1.9.6:
Improve name matching algorithm
Utilize jquery for cleaner page scraping
Other minor performance improvements

Updates in v1.9:
Fixed overwrite confirmation

Updates in v1.8:
Roll back overwrite confirmation...  not working on some systems.

Updates in v1.7:
Attempt to fix name capitalization bug.
Assignment table no longer jumps to the beginning.
Warning to confirm overwriting previous data.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Aeries.Net Web Import Aeries.Net Web Import
ID apkcmjgopjjgnmiehnpkmegbnamodlji
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/aeriesnet-web-import/apkcmjgopjjgnmiehnpkmegbnamodlji
คำอธิบาย This extension allows import of csv data into Aeries.Net
ขนาดไฟล์ 57.89 KB
จำนวนการติดตั้ง 74
เวอร์ชันปัจจุบัน 1.9.9
อัปเดตครั้งล่าสุด 2019-09-20
วันที่เผยแพร่ 2019-09-19
ผู้พัฒนา kjhinds
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "This extension allows import of csv data into Aeries.Net",
    "icons": {
        "128": "img\/128px-Data-transfer.svg.png"
    },
    "manifest_version": 2,
    "name": "Aeries.Net Web Import",
    "permissions": [
        "https:\/\/teacherportal.abcusd.us\/",
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_title": "Aeries.Net Web Import",
        "default_icon": "img\/32px-Data-transfer.svg.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "jquery-3.3.1.min.js",
                "contentscript.js"
            ],
            "matches": [
                "https:\/\/teacherportal.abcusd.us\/Aeries.Net\/gradebook\/*\/*\/*"
            ]
        }
    ],
    "version": "1.9.9",
    "web_accessible_resources": [
        "script.js",
        "popup.js",
        "roster.js",
        "roster.html"
    ]
}