Academist

Find specialized study resources in no time with this intelligent tool.

Academistคืออะไร?

Academist เป็นส่วนขยายของ Chrome ที่พัฒนาโดย academistproject และคุณลักษณะหลักของมันคือ "Find specialized study resources in no time with this intelligent tool."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Academist

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

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

                        This extension is for students that use School Loop.

Whether you were absent, or are just struggling to grasp a concept, there many reasons to review a class topic online. Academist makes that process 100 times more efficient by automatically providing links to useful online resources based on the content in your School Loop assignments.

Academist finds relevant Khan Academy topics and videos by applying a search algorithm to the titles of your assignments. Just click the dropdown on an assignment to see Academist's recommended resources, which come from Khan Academy's vast library of thousands of specific topics.

Academist also supports several textbooks. It uses page numbers, chapter numbers, etc. that appear in assignments to pinpoint useful Khan Academy topics and videos.

Just remember, Academist is not all-knowing – Its suggestions are not scripture, but they can often be extremely useful.

Read more on the Academist Blog by clicking on the Website link below.



Disclaimer: Academist is not affiliated with Khan Academy or School Loop.                    

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

ชื่อ Academist Academist
ID nlpoabfeplfpdpmnlncaiobegmdegjba
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/academist/nlpoabfeplfpdpmnlncaiobegmdegjba
คำอธิบาย Find specialized study resources in no time with this intelligent tool.
ขนาดไฟล์ 5 MB
จำนวนการติดตั้ง 259
เวอร์ชันปัจจุบัน 2.0.3
อัปเดตครั้งล่าสุด 2017-09-08
วันที่เผยแพร่ 2017-09-07
คะแนน 5.00/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา academistproject
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://academistproject.blogspot.com/
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Academist",
    "short_name": "Academist",
    "description": "Find specialized study resources in no time with this intelligent tool.",
    "version": "2.0.3",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.schoolloop.com\/portal\/student_home*",
                "*:\/\/*.schoolloop.com\/portal\/parent_home*"
            ],
            "js": [
                "jquery-2.2.2.min.js",
                "lunr.min.js",
                "html_utils.js",
                "options_utils.js",
                "textbook_utils.js",
                "subject_utils.js",
                "portal_content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "globe_with_hat_128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "globe_with_hat_16.png",
        "48": "globe_with_hat_48.png",
        "128": "globe_with_hat_128.png"
    },
    "options_page": "options.html",
    "permissions": [
        "storage",
        "tabs",
        "*:\/\/*.schoolloop.com\/portal\/student_home*",
        "*:\/\/*.schoolloop.com\/portal\/parent_home*"
    ],
    "web_accessible_resources": [
        "topicInfo.json",
        "indexes.json",
        "options.html",
        "globe_with_hat_48.png",
        "check_48.png",
        "questionable_48.png",
        "search_48.png",
        "KhanAcademyMathTopicsList.xml",
        "KhanAcademyScienceTopicsList.xml",
        "KhanAcademyHumanitiesTopicsList.xml",
        "KhanAcademyEconomicsTopicsList.xml",
        "Textbooks\/*\/*"
    ]
}